mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
49 lines
1.5 KiB
Makefile
49 lines
1.5 KiB
Makefile
## This is a automake file, part of Unidata's netCDF package.
|
|
# Copyright 2005, see the COPYRIGHT file for more information.
|
|
|
|
# This file builds and runs the nc_test program, which tests the
|
|
# netCDF-3 API for all formats.
|
|
|
|
# $Id: Makefile.am,v 1.65 2010/05/29 00:43:23 dmh Exp $
|
|
|
|
LDADD = -lm
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
|
|
# These files are created by the tests.
|
|
CLEANFILES = nc_test_classic.nc nc_test_64bit.nc nc_test_netcdf4.nc \
|
|
tst_*.nc t_nc.nc large_files.nc quick_large_files.nc
|
|
|
|
# These are the tests which are always run.
|
|
TESTPROGRAMS = t_nc tst_small nc_test tst_misc tst_norm tst_names
|
|
|
|
# These are the source files for the main workhorse test program,
|
|
# nc_test. If you pass nc_test, you are doing well.
|
|
nc_test_SOURCES = nc_test.c error.c test_get.m4 test_put.m4 \
|
|
test_read.c test_write.c util.c error.h tests.h
|
|
|
|
LDADD += ${top_builddir}/liblib/libnetcdf.la @EXTERN_LDFLAGS@
|
|
AM_CPPFLAGS += -I$(top_builddir)/liblib
|
|
|
|
# If the user asked for large file tests, then add them.
|
|
if LARGE_FILE_TESTS
|
|
TESTPROGRAMS += quick_large_files tst_big_var6 tst_big_var2 \
|
|
tst_big_rvar tst_big_var tst_large large_files
|
|
endif # LARGE_FILE_TESTS
|
|
|
|
# Set up the tests.
|
|
check_PROGRAMS = $(TESTPROGRAMS)
|
|
TESTS = $(TESTPROGRAMS)
|
|
|
|
# Distribute the .c files so that m4 isn't required on the users
|
|
# machine.
|
|
EXTRA_DIST = test_get.c test_put.c
|
|
|
|
# Only clean these on mainatiner-clean, because they require m4 to
|
|
# regenerate.
|
|
MAINTAINERCLEANFILES = test_get.c test_put.c
|
|
|
|
# This rule tells make how to turn our .m4 files into .c files.
|
|
.m4.c:
|
|
m4 $(AM_M4FLAGS) $(M4FLAGS) $< >$@
|
|
|