File: Makefile.am

package info (click to toggle)
libfdf 0.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 552 kB
  • sloc: f90: 4,028; perl: 805; python: 174; sh: 116; makefile: 99
file content (38 lines) | stat: -rw-r--r-- 606 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright (C) 2017 Yann Pouillon

#
# Makefile for LibFDF tests
#

# Make library modules available globally
AM_FCFLAGS = -I../src

# Define test programs
check_PROGRAMS = sample

sample_SOURCES = sample.F90
sample_LDADD = ../src/libfdf.la

# Define test suite
TESTS = sample

# Distribute remaining test materials
EXTRA_DIST = \
 CMakeLists.txt \
 Coords.dat \
 Makefile.am \
 Makefile.in \
 Otherfile \
 XY.fdf \
 ambiguous-units.fdf \
 coords.fdf \
 hostfile \
 sample.F90 \
 sample.fdf \
 submit.sh \
 test-ambiguous-units.f90 \
 test-units.f90 \
 units-ambiguous.f90 \
 units-test.fdf \
 units.f90