File: Makefile.am

package info (click to toggle)
nco 5.3.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 38,260 kB
  • sloc: ansic: 84,963; cpp: 28,654; sh: 14,071; perl: 5,996; makefile: 2,009; lex: 1,009; python: 127; csh: 40
file content (29 lines) | stat: -rw-r--r-- 825 bytes parent folder | download | duplicates (4)
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
# $Header$ -*-makefile-*-

# 20151001: Sub-folder is by default, and not when configure --disable-docs is invoked
SUBDIRS = data src man @DOC_FOLDER@

# Separately add desired files from nco/bld/ to distribution
# Autoconf does not know about the bld directory 
# In particular, nco/bld/Makefile was created manually, not by autoconf
bld_extras = bld/Makefile bld/pvmgetarch bld/nco.spec
EXTRA_DIST = $(bld_extras)
ACLOCAL_AMFLAGS = -I m4

# 20200917 Attempt to improve TAG-generation
ETAGS_ARGS = CMakeLists.txt Makefile.am configure.ac
TAGS_DEPENDENCIES = CMakeLists.txt Makefile.am configure.ac

test:	tst
tst:
	$(MAKE) check
	cd data && $(MAKE) in_4c.nc && cd ..
	cd bm && ./nco_bm.pl --regress

regress:	rgr
rgr:
	cd bm && ./nco_bm.pl --regress

regress-mpi:	rgr_mpi
rgr_mpi:
	cd bm && ./nco_bm.pl --regress --mpi_prc=2