summaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1997-08-15 16:54:08 (GMT)
committerRobb Matzke <matzke@llnl.gov>1997-08-15 16:54:08 (GMT)
commit7d9941f5c53c24ebb5f3cb7b0f4c6b56c1889918 (patch)
treef5cad7dc3d2267b6e6cf2b3f10d33887e2af1869 /test/Makefile.in
parentbcbe95cad006f0c72b0eeadf0eeaf82629145f6b (diff)
downloadhdf5-7d9941f5c53c24ebb5f3cb7b0f4c6b56c1889918.zip
hdf5-7d9941f5c53c24ebb5f3cb7b0f4c6b56c1889918.tar.gz
hdf5-7d9941f5c53c24ebb5f3cb7b0f4c6b56c1889918.tar.bz2
[svn-r37] *** empty log message ***
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
new file mode 100644
index 0000000..b40849e
--- /dev/null
+++ b/test/Makefile.in
@@ -0,0 +1,26 @@
+# HDF5 Library Test Makefile(.in) -*- makefile -*-
+#
+# Copyright (C) 1997 National Center for Supercomputing Applications.
+# All rights reserved.
+#
+#
+@COMMENCE@
+
+# Add include directory to the C preprocessor flags.
+CPPFLAGS=-I. -I../src @CPPFLAGS@
+
+# These are our main targets:
+PROGS=testhdf5
+
+# Source and object files for programs...
+PROG_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c
+PROG_OBJ=$(PROG_SRC:.c=.o)
+
+# Private header files (not to be installed)...
+PRIVATE_HDR=testhdf5.h
+
+# How to build the programs...
+testhdf5: $(PROG_OBJ) ../src/libhdf5.a
+ $(CC) $(CFLAGS) -o $@ $(PROG_OBJ) ../src/libhdf5.a
+
+@CONCLUDE@