diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-07-13 15:35:21 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-07-13 15:35:21 (GMT) |
commit | 614ae2dce6086a8966a26074f48644aa3c92f93c (patch) | |
tree | 9f7ddbf622c6403dd61ae4bb977dda94e75ac915 /tools/Makefile.in | |
parent | b5189f738df7043790a254ed55263b08386dece8 (diff) | |
download | hdf5-614ae2dce6086a8966a26074f48644aa3c92f93c.zip hdf5-614ae2dce6086a8966a26074f48644aa3c92f93c.tar.gz hdf5-614ae2dce6086a8966a26074f48644aa3c92f93c.tar.bz2 |
[svn-r485] Changes since 19980710
----------------------
./Makefile.in
./config/commence.in
./config/conclude.in
./config/depend.in
./src/Makefile.in
./test/Makefile.in
Tests are no longer installed for `make install'. Added a new
target `make tests' that builds the tests but doesn't run them.
./configure.in
./configure [REGENERATED]
./src/H5config.h.in [REGENERATED]
Added detection of fork() and waitpid(). If present the
contants HAVE_FORK and HAVE_WAITPID will be defined in
H5config.h.
./test/dtypes.c
Minor tweaks for systems that don't have fork() or waitpid().
./MANIFEST
./tools [NEW]
./tools/Makefile.in [NEW]
./tools/h5debug.c [NEW]
./tools/h5import.c [NEW]
./tools/h5ls.c [NEW]
./tools/h5repart.c [NEW]
Added a tools directory and moved tools from the src directory
to here.
Diffstat (limited to 'tools/Makefile.in')
-rw-r--r-- | tools/Makefile.in | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in new file mode 100644 index 0000000..1f93b00 --- /dev/null +++ b/tools/Makefile.in @@ -0,0 +1,32 @@ +# HDF5 Library Makefile(.in) +# +# Copyright (C) 1997 National Center for Supercomputing Applications. +# All rights reserved. +# +# +@COMMENCE@ + +# Add include directory to the C preprocessor flags. +CPPFLAGS=-I../src @CPPFLAGS@ + +# These are our main targets: +PROGS=h5debug h5import h5ls h5repart + +# Source and object files for programs... +PROG_SRC=h5debug.c h5import.c h5ls.c h5repart.c +PROG_OBJ=$(PROG_SRC:.c=.o) + +# How to build the programs... +h5debug: h5debug.o ../src/libhdf5.a + $(CC) $(CFLAGS) -o $@ h5debug.o ../src/libhdf5.a $(LIBS) + +h5import: h5import.o ../src/libhdf5.a + $(CC) $(CFLAGS) -o $@ h5import.o ../src/libhdf5.a $(LIBS) + +h5ls: h5ls.o ../src/libhdf5.a + $(CC) $(CFLAGS) -o $@ h5ls.o ../src/libhdf5.a $(LIBS) + +h5repart: h5repart.o ../src/libhdf5.a + $(CC) $(CFLAGS) -o $@ h5repart.o ../src/libhdf5.a $(LIBS) + +@CONCLUDE@ |