mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +08:00
eb3d9eb0c9
Primary changes: * Add an improved cache system to speed up performance. * Fix NCZarr to properly handle scalar variables. Misc. Related Changes: * Added unit tests for extendible hash and for the generic cache. * Add config parameter to set size of the NCZarr cache. * Add initial performance tests but leave them unused. * Add CRC64 support. * Move location of ncdumpchunks utility from /ncgen to /ncdump. * Refactor auth support. Misc. Unrelated Changes: * More cleanup of the S3 support * Add support for S3 authentication in .rc files: HTTP.S3.ACCESSID and HTTP.S3.SECRETKEY. * Remove the hashkey from the struct OBJHDR since it is never used.
80 lines
1.3 KiB
Makefile
80 lines
1.3 KiB
Makefile
# This is part of Unidata's netCDF package. Copyright 2018, see the
|
|
# COPYRIGHT file for more information.
|
|
|
|
# Build the ZARR dispatch layer.
|
|
|
|
# Dennis Heimbigner
|
|
|
|
# Get AM_CPPFLAGS and AM_LDFLAGS
|
|
include $(top_srcdir)/lib_flags.am
|
|
AM_CPPFLAGS += -D_LARGEFILE_SOURCE
|
|
AM_CPPFLAGS += -I$(top_srcdir)/libsrc4 -I$(top_srcdir)/libdap4
|
|
libnczarr_la_CPPFLAGS = ${AM_CPPFLAGS}
|
|
AM_CXXFLAGS =
|
|
libnczarr_la_LIBADD =
|
|
libnczarr_la_LDFLAGS =
|
|
|
|
# Remember ENABLE_NCZARR implies USE_NETCDF4
|
|
|
|
# We may have to add to these later.
|
|
DISTCLEANFILES =
|
|
MAINTAINERCLEANFILES =
|
|
CLEANFILES =
|
|
EXTRA_DIST =
|
|
LDADD=
|
|
|
|
# This is our output. The ZARR convenience library.
|
|
noinst_LTLIBRARIES = libnczarr.la
|
|
|
|
# The source files.
|
|
libnczarr_la_SOURCES = \
|
|
zarr.c \
|
|
zattr.c \
|
|
zxcache.c \
|
|
zchunking.c \
|
|
zclose.c \
|
|
zcreate.c \
|
|
zcvt.c \
|
|
zdim.c \
|
|
zdispatch.c \
|
|
zfile.c \
|
|
zfilter.c \
|
|
zgrp.c \
|
|
zinternal.c \
|
|
zjson.c \
|
|
zmap.c \
|
|
zmap_nz4.c \
|
|
zmap_nzf.c \
|
|
zodom.c \
|
|
zopen.c \
|
|
zprov.c \
|
|
zsync.c \
|
|
ztype.c \
|
|
zutil.c \
|
|
zvar.c \
|
|
zwalk.c \
|
|
zdebug.c \
|
|
zarr.h \
|
|
zcache.h \
|
|
zchunking.h \
|
|
zdispatch.h \
|
|
zincludes.h \
|
|
zinternal.h \
|
|
zjson.h \
|
|
zmap.h \
|
|
zodom.h \
|
|
zprovenance.h \
|
|
zdebug.h
|
|
|
|
if ENABLE_S3_SDK
|
|
libnczarr_la_SOURCES += zmap_s3sdk.c
|
|
libnczarr_la_SOURCES += zs3sdk.cpp awsincludes.h zs3sdk.h
|
|
AM_CXXFLAGS += -std=c++11
|
|
endif
|
|
|
|
# For now, ignore these
|
|
IGNORED=ztype.c
|
|
|
|
# Package this for cmake build.
|
|
EXTRA_DIST += CMakeLists.txt
|