mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-09 08:11:38 +08:00
e7d5f24078
The primary change is to support the use of a zip file as a storage format. Simultaneously the .nz4 support is made obsolete Use of zip requires the libzip support library, so a number of changes to the build files (Makefile.am, CMakeLists.txt) are necessary to locate and incorporate libzip. The nczarr_tests tests are also changed to add zip testing. Other changes: * Make sure distcheck leaves no files around. * Add some functions to netcdf_aux to export some functions of libnetcdf. * Add a new error NC_EFOUND as the complement of NC_EEMPTY. * Add tracing support to nclog and use it in libnczarr. * Modify the zmap interface to support the writeonce semantics of zip. * Create a new s3util.c to support a variety of S3 auxilliary functions. * EXTERNL'ize a number of functions so they can be used in s3util. * Add support for the S3 ListObjects CommonPrefixes mechanism to improve search. * Add experimental support for running nczarr X s3 tests against the actual Amazon S3 cloud.
84 lines
1.4 KiB
Makefile
84 lines
1.4 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_file.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 \
|
|
ztracedispatch.h \
|
|
zincludes.h \
|
|
zinternal.h \
|
|
zjson.h \
|
|
zmap.h \
|
|
zodom.h \
|
|
zprovenance.h \
|
|
zdebug.h
|
|
|
|
if ENABLE_NCZARR_ZIP
|
|
libnczarr_la_SOURCES += zmap_zip.c
|
|
endif
|
|
|
|
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
|