blob: 51b266481c63f9e19cff960e510a6ee68635836e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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)/hl/src @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 H5TB.c H5IM.c
LIB_OBJ=$(LIB_SRC:.c=.lo)
## Temporary files
MOSTLYCLEAN=
## Public header files (to be installed)...
PUB_HDR=H5IM.h H5LT.h H5TB.h
## Other header files (not to be installed)...
PRIVATE_HDR=
@CONCLUDE@
|