summaryrefslogtreecommitdiffstats
path: root/testpar/Makefile.irix64
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-07-01 21:33:35 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-07-01 21:33:35 (GMT)
commita9b794a0127c5b523ca7adb571961da36a9ecf3f (patch)
tree7db51940c1eb221f53b4547ba24e2446130bf173 /testpar/Makefile.irix64
parent0b5e6ee7a13dca7e315ad73886b569af1a7c3554 (diff)
downloadhdf5-a9b794a0127c5b523ca7adb571961da36a9ecf3f.zip
hdf5-a9b794a0127c5b523ca7adb571961da36a9ecf3f.tar.gz
hdf5-a9b794a0127c5b523ca7adb571961da36a9ecf3f.tar.bz2
[svn-r439] Changed the PHDF test programs substantially. Used to be just one
big testphdf5.c file. Broke it into modules of related routines. testphdf5.c -- main routine and global variables initialization plus some ulitility routines. t_file.c -- tests of file operations using parallel I/O. t_dset.c -- tests of datasets operations.
Diffstat (limited to 'testpar/Makefile.irix64')
-rw-r--r--testpar/Makefile.irix648
1 files changed, 4 insertions, 4 deletions
diff --git a/testpar/Makefile.irix64 b/testpar/Makefile.irix64
index 991479d..4dcf2a8 100644
--- a/testpar/Makefile.irix64
+++ b/testpar/Makefile.irix64
@@ -24,7 +24,7 @@ MOSTLYCLEAN=ParaEg1.h5f ParaEg2.h5f
DISTCLEAN=go
# The default is to build the library and programs.
-all: testphdf5
+all: progs
# These are our main targets. They should be listed in the order to be
@@ -36,10 +36,10 @@ TESTS=$(PROGS)
# source files and is used for things like dependencies, archiving, etc. The
# other source lists are for the individual tests, the files of which may
# overlap with other tests.
-PROG_SRC=testphdf5.c
+PROG_SRC=testphdf5.c t_dset.c t_file.c
PROG_OBJ=$(PROG_SRC:.c=.o)
-TESTPHDF5_SRC=testphdf5.c
+TESTPHDF5_SRC=testphdf5.c t_dset.c t_file.c
TESTPHDF5_OBJ=$(TESTPHDF5_SRC:.c=.o)
# Private header files (not to be installed)...
@@ -92,7 +92,7 @@ distclean: clean
maintainer-clean: distclean
# Implicit rules
-.c.o:
+.c.o: testphdf5.h
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<