50 lines
1.0 KiB
Makefile
50 lines
1.0 KiB
Makefile
# src/C level Makefile.am
|
|
|
|
OBJEXT=o
|
|
|
|
HDFLIB = -L@HDF5ROOT@/lib -lhdf5 -lz @SZLIB@
|
|
LIBS = $(HDFLIB) @MPILIB@
|
|
|
|
INCLUDES = -I../include -I@HDF5ROOT@/include @MPIINC@
|
|
|
|
# What to build... Will be determined by configure script.
|
|
lib_LIBRARIES = libH5hutC.a
|
|
|
|
# Listing of all possible targets that I may build.
|
|
EXTRA_LIBRARIES = libH5hutC.a
|
|
|
|
# Header files that I wish to install in $(prefix)/include
|
|
include_HEADERS = \
|
|
../include/H5hut.h \
|
|
../include/H5.h \
|
|
../include/H5_inquiry.h \
|
|
../include/H5_attribs.h \
|
|
../include/H5Block.h \
|
|
../include/H5Fed.h \
|
|
../include/H5Fed_store.h \
|
|
../include/H5Fed_tags.h \
|
|
../include/H5Part.h
|
|
|
|
# Listing of all possible headers that I may include
|
|
EXTRA_HEADERS =
|
|
|
|
# Listing of sources
|
|
libH5hutC_a_SOURCES = \
|
|
H5.c \
|
|
H5_attribs.c \
|
|
H5_inquiry.c \
|
|
H5Block.c \
|
|
H5Fed.c \
|
|
H5Fed_adjacency.c \
|
|
H5Fed_inquiry.c \
|
|
H5Fed_retrieve.c \
|
|
H5Fed_store.c \
|
|
H5Fed_tags.c \
|
|
H5Part.c
|
|
|
|
all: ../lib/libH5hutC.a
|
|
|
|
../lib/libH5hutC.a: libH5hutC.a
|
|
-cp $^ $@
|
|
|