mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
3db4f013bf
Specific changes: 1. Add dap4 code: libdap4 and dap4_test. Note that until the d4ts server problem is solved, dap4 is turned off. 2. Modify various files to support dap4 flags: configure.ac, Makefile.am, CMakeLists.txt, etc. 3. Add nc_test/test_common.sh. This centralizes the handling of the locations of various things in the build tree: e.g. where is ncgen.exe located. See nc_test/test_common.sh for details. 4. Modify .sh files to use test_common.sh 5. Obsolete separate oc2 by moving it to be part of netcdf-c. This means replacing code with netcdf-c equivalents. 5. Add --with-testserver to configure.ac to allow override of the servers to be used for --enable-dap-remote-tests. 6. There were multiple versions of nctypealignment code. Try to centralize in libdispatch/doffset.c and include/ncoffsets.h 7. Add a unit test for the ncuri code because of its complexity. 8. Move the findserver code out of libdispatch and into a separate, self contained program in ncdap_test and dap4_test. 9. Move the dispatch header files (nc{3,4}dispatch.h) to .../include because they are now shared by modules. 10. Revamp the handling of TOPSRCDIR and TOPBUILDDIR for shell scripts. 11. Make use of MREMAP if available 12. Misc. minor changes e.g. - #include <config.h> -> #include "config.h" - Add some no-install headers to /include - extern -> EXTERNL and vice versa as needed - misc header cleanup - clean up checking for misc. unix vs microsoft functions 13. Change copyright decls in some files to point to LICENSE file. 14. Add notes to RELEASENOTES.md
238 lines
7.9 KiB
Makefile
238 lines
7.9 KiB
Makefile
## This is a automake file, part of Unidata's netCDF package.
|
|
# Copyright 2005-2013, see the COPYRIGHT file for more information.
|
|
|
|
# This is the main automake file for netCDF. It builds the different
|
|
# netcdf directories. Not all directories are built, depending on the
|
|
# options selected during configure.
|
|
|
|
# This directory stores libtool macros, put there by aclocal.
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
# These files get added to the distribution.
|
|
EXTRA_DIST = README.md COPYRIGHT INSTALL.md test_prog.c \
|
|
lib_flags.am cmake CMakeLists.txt COMPILE.cmake.txt \
|
|
config.h.cmake.in cmake_uninstall.cmake.in \
|
|
FixBundle.cmake.in \
|
|
nc-config.cmake.in RELEASE_NOTES.md CTestCustom.cmake \
|
|
CTestConfig.cmake.in libnetcdf.settings.in netCDFConfig.cmake.in \
|
|
CMakeInstallation.cmake test-driver-verbose test_common.in
|
|
|
|
# Doxygen doesn't build nicely in vpath builds.
|
|
# Don't do this; it wipes out any exported values
|
|
#DISTCHECK_CONFIGURE_FLAGS = --disable-doxygen
|
|
|
|
pkgconfigdir=$(libdir)/pkgconfig
|
|
pkgconfig_DATA = netcdf.pc
|
|
|
|
# We need a way to automatically generate INSTALL from
|
|
# docs/install.doc, now that we've switched from texinfo to doxygen.
|
|
# INSTALL:
|
|
# non-existent-doxygen-to-text-utility < docs/install.doc > INSTALL
|
|
|
|
# Does the user want to build the V2 API?
|
|
if BUILD_V2
|
|
V2_TEST = nctest
|
|
endif
|
|
|
|
# Does the user want to build ncgen/ncdump?
|
|
if BUILD_UTILITIES
|
|
NCGEN3 = ncgen3
|
|
NCGEN = ncgen
|
|
NCDUMP = ncdump
|
|
endif
|
|
|
|
# Does the user want to build the examples?
|
|
if BUILD_EXAMPLES
|
|
EXAMPLES = examples
|
|
endif
|
|
|
|
# Is the user building netCDF-4?
|
|
if USE_NETCDF4
|
|
H5_TEST_DIR = h5_test
|
|
LIBSRC4_DIR = libsrc4
|
|
NC_TEST4 = nc_test4
|
|
endif
|
|
|
|
# Build the dap2 client
|
|
if ENABLE_DAP
|
|
OCLIB = oc2
|
|
DAP2 = libdap2
|
|
NCDAP2TESTDIR = ncdap_test
|
|
endif
|
|
|
|
if ENABLE_DAP4
|
|
DAP4 = libdap4
|
|
NCDAP4TESTDIR = dap4_test
|
|
endif #DAP4
|
|
|
|
# Build pnetcdf
|
|
if USE_PNETCDF
|
|
LIBSRCP = libsrcp
|
|
endif
|
|
|
|
# Build UDUNITS?
|
|
#if BUILD_UDUNITS
|
|
#UDUNITS = udunits
|
|
#endif
|
|
|
|
# Build libcf?
|
|
#if BUILD_LIBCF
|
|
#LIBCF = libcf
|
|
#endif
|
|
|
|
# Define Test directories
|
|
if BUILD_TESTSETS
|
|
TESTDIRS = $(V2_TEST) nc_test $(NC_TEST4) $(NCDAP2TESTDIR) $(NCDAP4TESTDIR)
|
|
endif
|
|
|
|
# This is the list of subdirs for which Makefiles will be constructed
|
|
# and run. ncgen must come before ncdump, because their tests
|
|
# depend on it.
|
|
SUBDIRS = include $(H5_TEST_DIR) libdispatch libsrc \
|
|
$(LIBSRC4_DIR) $(LIBSRCP) $(OCLIB) $(DAP2) ${DAP4} liblib \
|
|
$(NCGEN3) $(NCGEN) $(NCDUMP) \
|
|
$(TESTDIRS) \
|
|
docs $(EXAMPLES) \
|
|
$(UDUNITS) $(LIBCF)
|
|
|
|
# Remove these generated files, for a distclean.
|
|
DISTCLEANFILES = VERSION comps.txt test_prog libnetcdf.settings test_common.sh
|
|
|
|
# The nc-config script helps the user build programs with netCDF.
|
|
bin_SCRIPTS = nc-config
|
|
|
|
# What needs to go in the binrary dist?
|
|
BINFILES = README_BINARIES.txt
|
|
BINFILES += include/netcdf.h share/man/man3/netcdf.3 lib/libnetcdf.a
|
|
BINFILES += libnetcdf.settings
|
|
ZIPBINFILES = ${prefix}/include/netcdf.h ${prefix}/share/man/man3/netcdf.3 ${prefix}/lib/libnetcdf.a
|
|
|
|
if BUILD_UTILITIES
|
|
BINFILES += bin/ncgen3$(EXEEXT) bin/ncgen$(EXEEXT) bin/ncdump$(EXEEXT) \
|
|
share/man/man1/ncgen.1 share/man/man1/ncdump.1
|
|
ZIPBINFILES += ${prefix}/bin/ncgen3$(EXEEXT) ${prefix}/bin/ncgen$(EXEEXT) ${prefix}/bin/ncdump$(EXEEXT) \
|
|
${prefix}/share/man/man1/ncgen.1 ${prefix}/share/man/man1/ncdump.1
|
|
endif
|
|
|
|
if BUILD_DLL
|
|
BINFILES += bin/libnetcdf-7.dll lib/libnetcdf.dll.a lib/libnetcdf.a \
|
|
lib/libnetcdf.la lib/netcdfdll.def
|
|
ZIPBINFILES += ${prefix}/bin/libnetcdf-7.dll ${prefix}/lib/libnetcdf.dll.a ${prefix}/lib/libnetcdf.a \
|
|
${prefix}/lib/libnetcdf.la ${prefix}/lib/netcdfdll.def
|
|
endif # BUILD_DLL
|
|
|
|
# install libnetcdf.settings in lib directory.
|
|
settingsdir=$(libdir)
|
|
settings_DATA=libnetcdf.settings
|
|
|
|
####
|
|
# Provide an entry to rebuild all the m4 generated files
|
|
# List of files to create: WARNING leave off the extension
|
|
####
|
|
|
|
MM4= ./nc_test/test_put ./nc_test/test_get \
|
|
./libsrc/netcdf ./libsrc/putget ./libsrc/ncx \
|
|
./libsrc/t_ncxx ./libsrc/attr
|
|
|
|
mm4::
|
|
for m in ${MM4} ; do \
|
|
b=`basename $$m` ; d=`dirname $$m`;\
|
|
pushd $$d; m4 -s $${b}.m4 > $${b}.c ; popd; done
|
|
|
|
|
|
#####
|
|
# If ENABLE_FORTRAN was turned on,
|
|
# we have new make targets, build-netcdf-fortran and
|
|
# install-netcdf-fortran.
|
|
#####
|
|
|
|
|
|
###
|
|
# build-netcdf-fortran
|
|
###
|
|
if BUILD_FORTRAN
|
|
|
|
build-netcdf-fortran:
|
|
echo "Downloading and Building NetCDF-Fortran"
|
|
chmod u+x $(abs_top_builddir)/postinstall.sh
|
|
sh -c "$(abs_top_builddir)/postinstall.sh -t autotools -a build"
|
|
|
|
###
|
|
# install-netcdf-fortran
|
|
###
|
|
install-netcdf-fortran:
|
|
echo "Installing NetCDF-Fortran"
|
|
chmod u+x $(abs_top_builddir)/postinstall.sh
|
|
sh -c "$(abs_top_builddir)/postinstall.sh -t autotools -a install"
|
|
|
|
endif
|
|
|
|
# At Unidata, package up binaries.
|
|
ftpbin: install
|
|
echo "Getting binaries from ${prefix}"
|
|
ls -l ${prefix}
|
|
echo "These are the binaries for netCDF @PACKAGE_VERSION@." > ${prefix}/README_BINARIES.txt
|
|
echo "For this build: CC=$(CC) CXX=$(CXX)" >> ${prefix}/README_BINARIES.txt
|
|
echo "CFLAGS=$(CFLAGS) CXXFLAGS=$(CXXFLAGS)" >> ${prefix}/README_BINARIES.txt
|
|
echo "FCFLAGS=$(FCFLAGS) F77FLAGS=$(F77FLAGS) $F90FLAGS=$(F90FLAGS)" >> ${prefix}/README_BINARIES.txt
|
|
which tar
|
|
echo "PATH: $(PATH)"
|
|
tar cf @BINFILE_NAME@ -C ${prefix} ${BINFILES}
|
|
gzip -f @BINFILE_NAME@
|
|
zip -j netcdf_${VERSION}.zip ${ZIPBINFILES}
|
|
|
|
check_nc_config:
|
|
$(CC) `./nc-config --cflags` test_prog.c -o test_prog `./nc-config --libs`
|
|
./test_prog
|
|
|
|
# Build nc_test/test_common.sh
|
|
# Complicated by need to create during distcheck
|
|
# which uses a read-only source tree
|
|
#all-local:
|
|
# rm -f ${top_builddir}/nc_test/test_common.sh
|
|
# cat /dev/null > ${top_builddir}/nc_test/test_common.sh
|
|
# chmod a+x ${top_builddir}/nc_test/test_common.sh
|
|
# sed -e "s|@TOPSRCDIR@|${abs_top_srcdir}|" -e "s|@TOPBUILDDIR@|${abs_top_builddir}|" <${top_srcdir}/test_common.in >>${top_builddir}/test_common.sh
|
|
|
|
install-data-hook:
|
|
|
|
# if BUILD_FORTRAN
|
|
# chmod u+x $(abs_top_builddir)/postinstall.sh
|
|
# sh -c "$(abs_top_builddir)/postinstall.sh -t autotools"
|
|
#endif
|
|
|
|
if BUILD_DLL
|
|
cp liblib/netcdfdll.def $(DESTDIR)${prefix}/bin
|
|
endif # BUILD_DLL
|
|
@echo ''
|
|
@echo '+-------------------------------------------------------------+'
|
|
@echo '| Congratulations! You have successfully installed netCDF! |'
|
|
@echo '| |'
|
|
@echo '| You can use script "nc-config" to find out the relevant |'
|
|
@echo '| compiler options to build your application. Enter |'
|
|
@echo '| |'
|
|
@echo '| nc-config --help |'
|
|
@echo '| |'
|
|
@echo '| for additional information. |'
|
|
@echo '| |'
|
|
@echo '| CAUTION: |'
|
|
@echo '| |'
|
|
@echo '| If you have not already run "make check", then we strongly |'
|
|
@echo '| recommend you do so. It does not take very long. |'
|
|
@echo '| |'
|
|
@echo '| Before using netCDF to store important data, test your |'
|
|
@echo '| build with "make check". |'
|
|
@echo '| |'
|
|
@echo '| NetCDF is tested nightly on many platforms at Unidata |'
|
|
@echo '| but your platform is probably different in some ways. |'
|
|
@echo '| |'
|
|
@echo '| If any tests fail, please see the netCDF web site: |'
|
|
@echo '| http://www.unidata.ucar.edu/software/netcdf/ |'
|
|
@echo '| |'
|
|
@echo '| NetCDF is developed and maintained at the Unidata Program |'
|
|
@echo '| Center. Unidata provides a broad array of data and software |'
|
|
@echo '| tools for use in geoscience education and research. |'
|
|
@echo '| http://www.unidata.ucar.edu |'
|
|
@echo '+-------------------------------------------------------------+'
|
|
@echo ''
|