mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
99fccab359
2. Fixed plugin building (nc_test4/hdf5plugins) to be done properly by cmake and automake. 4. Duplicated part of the nc_test4 filter test code in examples/C An incomplete and untested set of hooks exist for OS-X in nc_test4/findplugins.in. They need testing.
48 lines
940 B
Plaintext
48 lines
940 B
Plaintext
# Test c output
|
|
T=test_filter_misc
|
|
#CMD=valgrind --leak-check=full
|
|
CMD=gdb --args
|
|
|
|
FILTER=H5Zmisc
|
|
|
|
#PAR=1
|
|
#SZIP=1
|
|
|
|
CFLAGS = -Wall -Wno-unused-variable -Wno-unused-function -g -O0 -I.. -I../include
|
|
|
|
LDFLAGS = ../liblib/.libs/libnetcdf.a -L/usr/local/lib -lhdf5_hl -lhdf5 -lz -ldl -lcurl -lm
|
|
|
|
ifdef PAR
|
|
CC=mpicc
|
|
LDFLAGS += -lmpich
|
|
else
|
|
CC=gcc
|
|
endif
|
|
|
|
ifdef SZIP
|
|
LDFLAGS += -lsz -laec
|
|
endif
|
|
|
|
LLP=/usr/local/lib:${LD_LIBRARY_PATH}
|
|
|
|
all:: cmp
|
|
export LD_LIBRARY_PATH=${LLP}; export CFLAGS; export LDFLAGS; \
|
|
${CMD} ./t
|
|
|
|
cmp::
|
|
export LD_LIBRARY_PATH=${LLP}; export CFLAGS; export LDFLAGS; \
|
|
${CC} -o t ${CFLAGS} ${T}.c ${SRC} hdf5plugins/${FILTER}.o ${LDFLAGS}
|
|
|
|
filter::
|
|
${CC} ${CFLAGS} -c hdf5plugins/${FILTER}.c ${LDFLAGS}
|
|
|
|
cpp::
|
|
${CC} -E ${CFLAGS} ${T}.c > ${T}.txt
|
|
|
|
H5=h5testszip
|
|
EXT=testszip.nc
|
|
h5::
|
|
export LD_LIBRARY_PATH=${LLP}; export CFLAGS; export LDFLAGS; \
|
|
${CC} -o h5 ${CFLAGS} ${H5}.c ${SRC} ${LDFLAGS}; \
|
|
${CMD} ./h5 ${EXT}
|