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
|
# $Header: /cvsroot/nco/nco/data/Makefile.am,v 1.9 2007/09/17 14:41:37 zender Exp $ -*-makefile-*-
test_data = big.nc in.nc in_rec_zero.nc
# netCDF build rules
%.nc : %.cdl
@PATH_TO_NCGEN@ -o $@ $<
all: ${test_data}
EXTRA_DIST = big.cdl in.cdl in_rec_zero.cdl ncap.in ncap.in2 ncap2.in tst.nco
# Automake manual section 14:
# If configure built it, 'distclean' should delete it
# If make built it, 'clean' should delete it
DISTCLEANFILES = foo*
# Build procedure produces these files:
CLEANFILES = 85.nc 86.nc 87.nc 88.nc 89.nc big.nc foo.nc h0001.nc h0002.nc h0003.nc in.nc in_rec_zero.nc ../src/nco_c++/in.nc
MAINTAINERCLEANFILES = Makefile.in
test: check
|