diff options
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 10d360f..4eaebdd 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -10,9 +10,8 @@ TRACE=perl ../bin/trace # Add `-I.' to the C preprocessor flags. CPPFLAGS=-I. @CPPFLAGS@ -# These are our main targets: +# This is our main target: LIB=libhdf5.a -PROGS=debug h5ls h5repart # Source and object files for the library (lexicographically)... LIB_SRC=H5.c H5A.c H5AC.c H5B.c H5D.c H5E.c H5F.c H5Farray.c H5Fcore.c \ @@ -28,10 +27,6 @@ LIB_OBJ=$(LIB_SRC:.c=.o) # Temporary files MOSTLYCLEAN=H5detect.o H5detect H5Tinit.o H5Tinit.c -# Source and object files for programs... -PROG_SRC=debug.c h5ls.c h5repart.c -PROG_OBJ=$(PROG_SRC:.c=.o) - # Public header files (to be installed)... PUB_HDR=H5public.h H5Apublic.h H5ACpublic.h H5Bpublic.h H5Dpublic.h \ H5Epublic.h H5Fpublic.h H5Gpublic.h H5HGpublic.h H5HLpublic.h \ @@ -53,14 +48,4 @@ H5Tinit.c: H5detect H5detect: H5detect.o $(CC) $(CFLAGS) -o $@ H5detect.o $(LIBS) -# How to build the programs... -debug: debug.o $(LIB) - $(CC) $(CFLAGS) -o $@ debug.o $(LIB) $(LIBS) - -h5ls: h5ls.o $(LIB) - $(CC) $(CFLAGS) -o $@ h5ls.o $(LIB) $(LIBS) - -h5repart: h5repart.o $(LIB) - $(CC) $(CFLAGS) -o $@ h5repart.o $(LIB) $(LIBS) - @CONCLUDE@ |