summaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1999-07-19 19:56:57 (GMT)
committerRobb Matzke <matzke@llnl.gov>1999-07-19 19:56:57 (GMT)
commit6470e417e8148558631c1793887d5b5bc65765af (patch)
treefaedbdb190bac2a69509bbb82d465b477d992727 /src/Makefile.in
parent9ab6d3211c9ab08ab8e9568d91a011bce5dc96b8 (diff)
downloadhdf5-6470e417e8148558631c1793887d5b5bc65765af.zip
hdf5-6470e417e8148558631c1793887d5b5bc65765af.tar.gz
hdf5-6470e417e8148558631c1793887d5b5bc65765af.tar.bz2
[svn-r1515] Changes since 19990715
---------------------- ./Makefile.in [1.3] ./examples/Makefile.in [1.3] ./pablo/Makefile.in [1.3] ./src/Makefile.in [1.3] ./test/Makefile.in [1.3] ./testpar/Makefile.in [1.3] ./tools/Makefile.in [1.3] ./config/commence.in [1.3] ./config/conclude.in [1.3] ./config/depend.in [1.3] Added a `.PATH' target for Irix pmake which is identical to the VPATH used by most other `make' programs. Irix 6.5 (or 6.4?) and later `make' ignores VPATH. Started all beginning-of-line comments with `##' instead of just `#' because Irix `pmake' barfs on things like the following because it sees the `# if' as a directive: # make will barf on the following line # if running Irix pmake ./config/commence.in [1.3] Added empty definitions for optional `make' macros because Irix pmake complains if it sees a macro which has never been defined. The main body of the Makefiles can redefine these macros to whatever they need.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in29
1 files changed, 15 insertions, 14 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 8b8c9bc..8c1b288 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1,24 +1,25 @@
-# HDF5 Library Makefile(.in)
-#
-# Copyright (C) 1997 National Center for Supercomputing Applications.
-# All rights reserved.
-#
-#
+## HDF5 Library Makefile(.in)
+##
+## Copyright (C) 1997 National Center for Supercomputing Applications.
+## All rights reserved.
+##
+##
top_srcdir=@top_srcdir@
top_builddir=..
srcdir=@srcdir@
VPATH=.:@srcdir@
+.PATH: . @srcdir@
@COMMENCE@
TRACE=perl $(top_srcdir)/bin/trace
-# Add `-I.' to the C preprocessor flags.
+## Add `-I.' to the C preprocessor flags.
CPPFLAGS=-I. -I@srcdir@ @CPPFLAGS@
-# This is our main target:
+## This is our main target:
LIB=libhdf5.la
-# Source and object files for the library (lexicographically)...
+## 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 \
H5Ffamily.c H5Fistore.c H5Flow.c H5Fmpio.c H5Fsec2.c H5Fsplit.c \
H5Fstdio.c H5G.c H5Gent.c H5Gnode.c H5Gstab.c H5HG.c H5HL.c H5I.c H5MF.c \
@@ -30,28 +31,28 @@ LIB_SRC=H5.c H5A.c H5AC.c H5B.c H5D.c H5E.c H5F.c H5Farray.c H5Fcore.c \
LIB_OBJ=$(LIB_SRC:.c=.lo)
-# Temporary files
+## Temporary files
MOSTLYCLEAN=H5detect.o H5detect H5Tinit.o H5Tinit.c
-# Public header files (to be installed)...
+## 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 \
H5Ipublic.h H5MFpublic.h H5MMpublic.h H5Opublic.h H5Ppublic.h \
H5Rpublic.h H5RApublic.h H5Spublic.h H5Tpublic.h H5Zpublic.h H5config.h \
hdf5.h H5api_adpt.h
-# Other header files (not to be installed)...
+## Other header files (not to be installed)...
PRIVATE_HDR=H5private.h H5Aprivate.h H5Apkg.h H5ACprivate.h H5Bprivate.h \
H5Dprivate.h H5Eprivate.h H5Fprivate.h H5Gprivate.h H5Gpkg.h \
H5HGprivate.h H5HLprivate.h H5Iprivate.h H5MFprivate.h H5MMprivate.h \
H5Oprivate.h H5Pprivate.h H5Rprivate.h H5RAprivate.h H5Sprivate.h \
H5Tprivate.h H5TBprivate.h H5Tpkg.h H5Vprivate.h H5Zprivate.h
-# Number format detection
+## Number format detection
H5Tinit.c: H5detect
$(RUNSERIAL) ./H5detect >H5Tinit.c
-# no $(LIB) in the action below since that's being made now.
+## no $(LIB) in the action below since that's being made now.
H5detect: H5detect.o
$(CC) $(CFLAGS) -o $@ H5detect.o $(LDFLAGS) $(LIBS)