diff options
author | cvs2svn <no_author@cvs2svn> | 2004-11-27 16:07:44 (GMT) |
---|---|---|
committer | cvs2svn <no_author@cvs2svn> | 2004-11-27 16:07:44 (GMT) |
commit | 0a27d163bcfee73f32d52e673fb4b2fe038bddfe (patch) | |
tree | 7acd053548dbbf822ab0a6723abc96ac2cc85940 /hl/src/Makefile.in | |
parent | 1670b2eb9ecf6f59d0463c1cf387217eb767d93d (diff) | |
download | hdf5-0a27d163bcfee73f32d52e673fb4b2fe038bddfe.zip hdf5-0a27d163bcfee73f32d52e673fb4b2fe038bddfe.tar.gz hdf5-0a27d163bcfee73f32d52e673fb4b2fe038bddfe.tar.bz2 |
[svn-r9581] This commit was manufactured by cvs2svn to create branch 'hdf5_1_6'.
Diffstat (limited to 'hl/src/Makefile.in')
-rw-r--r-- | hl/src/Makefile.in | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/hl/src/Makefile.in b/hl/src/Makefile.in new file mode 100644 index 0000000..07b8020 --- /dev/null +++ b/hl/src/Makefile.in @@ -0,0 +1,34 @@ +## HDF5 Library Makefile(.in) +## +## Copyright (C) 2001 National Center for Supercomputing Applications. +## All rights reserved. +## +## +top_srcdir=@top_srcdir@ +top_builddir=../.. +srcdir=@srcdir@ +@COMMENCE@ + +## Add `-I.' to the C preprocessor flags. +CPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdir)/tools/lib @CPPFLAGS@ + +## This is our main target, but also remove the settings file when cleaning. +LIB=libhdf5_hl.la +LIBHDF5=$(top_builddir)/src/libhdf5.la +CLEAN= + +## Source and object files for the library (lexicographically)... +LIB_SRC=H5LT.c H5TA.c H5IM.c + +LIB_OBJ=$(LIB_SRC:.c=.lo) + +## Temporary files +MOSTLYCLEAN= + +## Public header files (to be installed)... +PUB_HDR=H5IM.h H5LT.h H5TA.h + +## Other header files (not to be installed)... +PRIVATE_HDR= + +@CONCLUDE@ |