mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
d3b309722e
I took Ed's advice and moved the plugin stuff to its own top-level directory. This is an attempt to solve the problem of copying files that we have experienced. In any case, it will serve as a place to stick additional plugins.
28 lines
938 B
Makefile
28 lines
938 B
Makefile
# Copyright 2018, UCAR/Unidata
|
|
# See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
|
|
|
BZIP2HDRS=bzlib.h bzlib_private.h
|
|
BZIP2SRC= blocksort.c huffman.c crctable.c randtable.c compress.c decompress.c bzlib.c
|
|
|
|
PLUGINSRC=H5Zbzip2.c
|
|
PLUGINHDRS=h5bzip2.h
|
|
|
|
EXTRA_DIST=${PLUGINSRC} ${BZIP2SRC} ${PLUGINHDRS} ${BZIP2HDRS} \
|
|
H5Ztemplate.c H5Zmisc.c CMakeLists.txt
|
|
|
|
# WARNING: This list must be kept consistent with the corresponding
|
|
# AC_CONFIG_LINK commands near the end of configure.ac.
|
|
HDF5PLUGINSRC=${PLUGINSRC} ${BZIP2SRC} ${PLUGINHDRS} ${BZIP2HDRS}
|
|
|
|
if ENABLE_FILTER_TESTING
|
|
|
|
lib_LTLIBRARIES = libbzip2.la libmisc.la
|
|
|
|
libbzip2_la_SOURCES = ${HDF5PLUGINSRC}
|
|
libbzip2_la_LDFLAGS = -module -avoid-version -shared -export-dynamic -no-undefined
|
|
|
|
libmisc_la_SOURCES = H5Zmisc.c h5misc.h
|
|
libmisc_la_LDFLAGS = -module -avoid-version -shared -export-dynamic -no-undefined -rpath ${abs_builddir}
|
|
|
|
endif #ENABLE_FILTER_TESTING
|