diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-02-01 03:19:33 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-02-01 03:19:33 (GMT) |
commit | 1157fb4eb37e02d7dbd30dbf9779ac167a42d387 (patch) | |
tree | 3df41f4d8210ce0bfedd8b54e7408a41c5ea4e3a /hl/src/Makefile.am | |
parent | 26303241febadd20aea77fc8a1d48f05823170af (diff) | |
download | hdf5-1157fb4eb37e02d7dbd30dbf9779ac167a42d387.zip hdf5-1157fb4eb37e02d7dbd30dbf9779ac167a42d387.tar.gz hdf5-1157fb4eb37e02d7dbd30dbf9779ac167a42d387.tar.bz2 |
[svn-r9903] Purpose:
Configuration update
Description:
HDF5 now uses automake
Solution:
Ditto to previous checkin.
Diffstat (limited to 'hl/src/Makefile.am')
-rw-r--r-- | hl/src/Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/hl/src/Makefile.am b/hl/src/Makefile.am new file mode 100644 index 0000000..adbe00a --- /dev/null +++ b/hl/src/Makefile.am @@ -0,0 +1,24 @@ +# Copyright (C) 2001 National Center for Supercomputing Applications. +# All rights reserved. +## +## Makefile.am +## Run automake to generate a Makefile.in from this file. +# +# HDF5 High-Level Library Makefile(.in) +# + +include $(top_srcdir)/config/commence.am + +# Add include directories to the C preprocessor flags +#AM_CPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top-srcdir)/tools/lib +AM_CPPFLAGS=-I$(top_srcdir)/src + +# This library is our main target. +lib_LTLIBRARIES=libhdf5_hl.la + +libhdf5_hl_la_SOURCES=H5LT.c H5TB.c H5IM.c H5DS.c + +# Public header files (to be installed) +include_HEADERS=H5IM.h H5LT.h H5TB.h H5DS.h + +include $(top_srcdir)/config/conclude.am |