diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-11-22 19:17:36 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-11-22 19:17:36 (GMT) |
commit | 293fe87eeec295c4bb4227e17557361ef2f22df2 (patch) | |
tree | 7a30f3fe1374e83e25c9c93bad86fcff6024d383 /hl/src/Makefile.in | |
parent | 35ffb5bd1341b0b49096fae2554ba18046a30958 (diff) | |
download | hdf5-293fe87eeec295c4bb4227e17557361ef2f22df2.zip hdf5-293fe87eeec295c4bb4227e17557361ef2f22df2.tar.gz hdf5-293fe87eeec295c4bb4227e17557361ef2f22df2.tar.bz2 |
[svn-r9558] Purpose:
insert high level library into main library
Description:
configure.in has a new entry (--enable-hl, disable-hl) it is on by default
the configure message prints info regarding if hl is enabled or not
the tree is
/hl
/hl/src
/hl/test
Solution:
Platforms tested:
linux
solaris
AIX
Misc. update:
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..76ab0e1 --- /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 H5HL.h + +## Other header files (not to be installed)... +PRIVATE_HDR= + +@CONCLUDE@ |