summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1999-07-01 16:18:34 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1999-07-01 16:18:34 (GMT)
commit37a03d1e3260655b0e64a1a5a899457ceef65400 (patch)
treeabce0b2dc9648d0d085f3756cfce242d414d8fb2
parent13b67571be882c7f36461fcb8df88081f14d31be (diff)
downloadhdf5-37a03d1e3260655b0e64a1a5a899457ceef65400.zip
hdf5-37a03d1e3260655b0e64a1a5a899457ceef65400.tar.gz
hdf5-37a03d1e3260655b0e64a1a5a899457ceef65400.tar.bz2
[svn-r1402] Fixed a typo there. Now it should compile and clean up correctly.
-rw-r--r--examples/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Makefile.in b/examples/Makefile.in
index 171c8bd..04ff350 100644
--- a/examples/Makefile.in
+++ b/examples/Makefile.in
@@ -21,7 +21,7 @@ TEST_PROGS= h5_write h5_read h5_extend_write h5_chunk_read h5_compound \
# These are the files that `make clean' (and derivatives) will remove from
# this directory.
-CLEAN=*.h5 *.o *.lo
+CLEAN=*.h5
# List all source files here. The list of object files will be
# created by replacing the `.c' with a `.o'. This list is necessary
@@ -29,7 +29,7 @@ CLEAN=*.h5 *.o *.lo
TEST_SRC=h5_chunk_read.c h5_compound.c h5_extend_write.c h5_group.c \
h5_read.c h5_write.c h5_select.c h5_attribute.c h5_mount.c \
h5_reference.c
-TEST_OBJ=$(PROG_SRC:.c=.lo)
+TEST_OBJ=$(TEST_SRC:.c=.lo)
# How to build the programs... they all depend on the hdf5 library