mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
simplified build system
This commit is contained in:
parent
2a00a4cceb
commit
29e8619787
73
Makefile.am
73
Makefile.am
@ -5,8 +5,6 @@
|
||||
# netcdf directories. Not all directories are built, depending on the
|
||||
# options selected during configure.
|
||||
|
||||
# $Id: Makefile.am,v 1.137 2010/06/01 15:34:49 ed Exp $
|
||||
|
||||
# This directory stores libtool macros, put there by aclocal.
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
@ -31,9 +29,6 @@ F77_DIR = fortran
|
||||
F77_TEST = nf_test
|
||||
endif
|
||||
|
||||
# Does the user want C API?
|
||||
if BUILD_C
|
||||
|
||||
LIBSRC_DIR = libsrc
|
||||
NC_TEST_DIR = nc_test
|
||||
|
||||
@ -69,8 +64,6 @@ endif
|
||||
DISPATCHDIR = libdispatch
|
||||
ASSEMBLEDIR = liblib
|
||||
|
||||
endif # BUILD_C
|
||||
|
||||
# Does the user want F90 API?
|
||||
if BUILD_F90
|
||||
F90_DIR = f90
|
||||
@ -111,22 +104,13 @@ endif
|
||||
# and run. ncgen must come before ncdump and cxx, because their tests
|
||||
# depend on it. nf_test depends upon ncgen as well.
|
||||
# If not using dispatch then NC3DAPDIR must be
|
||||
# built right before LIBSRC_DIR and NC4DAPDIR must be
|
||||
# built right before libsrc and NC4DAPDIR must be
|
||||
# built right before LIBSRC4_DIR.
|
||||
# If using dispatch, then the order is different
|
||||
if BUILD_SEPARATE_FORTRAN
|
||||
SUBDIRS = include $(UDUNITS) $(H5_TEST_DIR) $(DISPATCHDIR) $(OCLIB) \
|
||||
$(LIBSRC_DIR) $(LIBSRC4_DIR) $(DAP2) $(LIBCDMR) \
|
||||
${ASSEMBLEDIR} $(V2_TEST) $(NC_TEST_DIR) $(F90_DIR) $(F77_DIR) \
|
||||
$(NCGEN3) $(NCGEN) $(NCDUMP) $(F77_TEST) ${CXX_DIR} $(CXX4) \
|
||||
$(NC_TEST4) $(NCDAPTESTDIR) man4 $(EXAMPLES) $(LIBCF)
|
||||
else
|
||||
SUBDIRS = include $(UDUNITS) $(H5_TEST_DIR) $(DISPATCHDIR) $(OCLIB) \
|
||||
$(F90_DIR) $(F77_DIR) $(LIBSRC_DIR) $(LIBSRC4_DIR) $(DAP2) \
|
||||
$(LIBCDMR) ${ASSEMBLEDIR} $(V2_TEST) $(NCGEN3) $(NCGEN) $(NCDUMP) \
|
||||
$(F77_TEST) ${CXX_DIR} $(CXX4) $(NC_TEST4) $(NC_TEST_DIR) \
|
||||
$(NCDAPTESTDIR) man4 $(EXAMPLES) $(LIBCF)
|
||||
endif
|
||||
libsrc $(LIBSRC4_DIR) $(DAP2) $(LIBCDMR) ${ASSEMBLEDIR} $(V2_TEST) \
|
||||
nc_test $(F90_DIR) $(F77_DIR) $(NCGEN3) $(NCGEN) $(NCDUMP) $(F77_TEST) \
|
||||
${CXX_DIR} $(CXX4) $(NC_TEST4) $(NCDAPTESTDIR) man4 $(EXAMPLES) \
|
||||
$(LIBCF)
|
||||
|
||||
# Remove these generated files, for a distclean.
|
||||
DISTCLEANFILES = VERSION comps.txt test_prog
|
||||
@ -136,38 +120,39 @@ bin_SCRIPTS = nc-config
|
||||
|
||||
# What needs to go in the binrary dist?
|
||||
BINFILES = README_BINARIES.txt
|
||||
if BUILD_C
|
||||
BINFILES += include/netcdf.h share/man/man3/netcdf.3 lib/libnetcdf.a
|
||||
endif
|
||||
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_F77
|
||||
BINFILES += include/netcdf.inc share/man/man3/netcdf_f77.3
|
||||
if BUILD_SEPARATE_FORTRAN
|
||||
BINFILES += lib/libnetcdff.a
|
||||
endif
|
||||
endif
|
||||
# if BUILD_F77
|
||||
# BINFILES += include/netcdf.inc share/man/man3/netcdf_f77.3
|
||||
# BINFILES += lib/libnetcdff.a
|
||||
# endif
|
||||
|
||||
if BUILD_F90
|
||||
if UPPER_CASE_MOD
|
||||
BINFILES += include/NETCDF.mod include/TYPESIZES.mod
|
||||
else
|
||||
BINFILES += include/netcdf.mod include/typesizes.mod
|
||||
endif
|
||||
BINFILES += share/man/man3/netcdf_f90.3
|
||||
endif
|
||||
# if BUILD_F90
|
||||
# if UPPER_CASE_MOD
|
||||
# BINFILES += include/NETCDF.mod include/TYPESIZES.mod
|
||||
# else
|
||||
# BINFILES += include/netcdf.mod include/typesizes.mod
|
||||
# endif
|
||||
# BINFILES += share/man/man3/netcdf_f90.3
|
||||
# endif
|
||||
|
||||
if BUILD_CXX
|
||||
BINFILES += include/netcdf.hh include/ncvalues.h include/netcdfcpp.h lib/libnetcdf_c++.a
|
||||
endif
|
||||
# if BUILD_CXX
|
||||
# BINFILES += include/netcdf.hh include/ncvalues.h include/netcdfcpp.h lib/libnetcdf_c++.a
|
||||
# endif
|
||||
|
||||
if BUILD_DLL
|
||||
BINFILES += liblib/.libs/cygnetcdf-7.dll liblib/.libs/libnetcdf.dll.a \
|
||||
liblib/.libs/libnetcdf.a liblib/.libs/libnetcdf.la
|
||||
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
|
||||
if BUILD_F77
|
||||
BINFILES +=
|
||||
endif # BUILD_F77
|
||||
@ -185,6 +170,7 @@ ftpbin: install
|
||||
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`
|
||||
@ -195,6 +181,9 @@ check_nc_config:
|
||||
./test_prog
|
||||
|
||||
install-data-hook:
|
||||
if BUILD_DLL
|
||||
cp liblib/netcdfdll.def ${prefix}/lib
|
||||
endif
|
||||
@echo ''
|
||||
@echo '+-------------------------------------------------------------+'
|
||||
@echo '| Congratulations! You have successfully installed netCDF! |'
|
||||
|
335
configure.ac
335
configure.ac
@ -1,7 +1,7 @@
|
||||
# -*- Autoconf -*-
|
||||
## Process this file with autoconf to produce a configure script.
|
||||
|
||||
# This is part of Unidata's netCDF package. Copyright 2005-2006, see
|
||||
# This is part of Unidata's netCDF package. Copyright 2005-2011, see
|
||||
# the COPYRIGHT file for more information.
|
||||
|
||||
# Recall that ${VAR-exp} expands to $VAR if var is set (even to null),
|
||||
@ -106,8 +106,12 @@ test "x$enable_valgrind_tests" = xyes || enable_valgrind_tests=no
|
||||
AC_MSG_RESULT($enable_valgrind_tests)
|
||||
|
||||
# Does the user want to build netcdf-4?
|
||||
AC_ARG_ENABLE([netcdf-4], [AS_HELP_STRING([--enable-netcdf-4],
|
||||
AC_MSG_CHECKING([whether we should try to build netCDF-4])
|
||||
AC_ARG_ENABLE([netcdf-4], [AS_HELP_STRING([--disable-netcdf-4],
|
||||
[build with netcdf-4 (HDF5 and zlib required)])])
|
||||
test "x$enable_netcdf_4" = xno || enable_netcdf_4=yes
|
||||
AC_MSG_RESULT([$enable_netcdf_4])
|
||||
|
||||
# Synonym
|
||||
# --enable-netcdf-4 is the controlling enable switch
|
||||
if test "x$enable_netcdf_4" = "x" ; then
|
||||
@ -129,22 +133,10 @@ test "x$with_libcf" = xyes || with_libcf=no
|
||||
AC_MSG_RESULT($with_libcf)
|
||||
|
||||
# Does the user want to turn on HDF4 read ability?
|
||||
AC_MSG_CHECKING([whether reading of HDF4 SD files is to be enabled])
|
||||
AC_ARG_ENABLE([hdf4], [AS_HELP_STRING([--enable-hdf4],
|
||||
[build netcdf-4 with HDF4 read capability (HDF4, HDF5 and zlib required)])])
|
||||
test "x$enable_hdf4" = xyes || enable_hdf4=no
|
||||
|
||||
# Did the user specify a location for the HDF4 library?
|
||||
AC_MSG_CHECKING([whether a location for the HDF4 library was specified])
|
||||
AC_ARG_WITH([hdf4],
|
||||
[AS_HELP_STRING([--with-hdf4=<directory>],
|
||||
[Specify location of HDF4 library. Configure will \
|
||||
expect to find subdirs include and lib.])],
|
||||
[HDF4DIR=$with_hdf4])
|
||||
AC_MSG_RESULT([$HDF4DIR])
|
||||
AC_SUBST(HDF4DIR, [$HDF4DIR])
|
||||
test "x$with_hdf4" = "x" || enable_hdf4=yes
|
||||
|
||||
AC_MSG_CHECKING([whether reading of HDF4 SD files is to be enabled])
|
||||
AC_MSG_RESULT($enable_hdf4)
|
||||
|
||||
# Does the user want to turn on extra HDF4 file tests?
|
||||
@ -164,21 +156,6 @@ AC_ARG_ENABLE([pnetcdf], [AS_HELP_STRING([--enable-pnetcdf],
|
||||
test "x$enable_pnetcdf" = xyes || enable_pnetcdf=no
|
||||
AC_MSG_RESULT($enable_pnetcdf)
|
||||
|
||||
# Did the user specify a location for the PNETCDF library?
|
||||
AC_MSG_CHECKING([whether a location for the parallel-netcdf library was specified])
|
||||
AC_ARG_WITH([pnetcdf],
|
||||
[AS_HELP_STRING([--with-pnetcdf=<directory>],
|
||||
[Specify location of parallel-netcdf library. Configure will \
|
||||
expect to find subdirs include and lib.])],
|
||||
[PNETCDFDIR=$with_pnetcdf])
|
||||
if test "x$PNETCDFDIR" = "x" ; then
|
||||
AC_MSG_RESULT([no])
|
||||
else
|
||||
AC_MSG_RESULT([$PNETCDFDIR])
|
||||
enable_pnetcdf=yes
|
||||
fi
|
||||
AC_SUBST(PNETCDFDIR, [$PNETCDFDIR])
|
||||
|
||||
# Does the user want to build cxx-4?
|
||||
AC_MSG_CHECKING([whether new netCDF-4 C++ API is to be built])
|
||||
AC_ARG_ENABLE([cxx-4],
|
||||
@ -190,18 +167,6 @@ if test "x$enable_netcdf_4" = xno; then
|
||||
fi
|
||||
AC_MSG_RESULT($enable_cxx_4)
|
||||
|
||||
# Should netcdf-4 do data conversions, or should HDF5?
|
||||
# (Note: netCDF-4 should always do conversions, because HDF5 has different handling of extreme numbers.
|
||||
dnl AC_MSG_CHECKING([whether HDF5 should do data conversions])
|
||||
dnl AC_ARG_ENABLE([hdf5-convert],
|
||||
dnl [AS_HELP_STRING([--enable-hdf5-convert],
|
||||
dnl [have HDF5 do data conversions instead of netCDF-4])])
|
||||
dnl test "x$enable_hdf5_convert" = xyes || enable_hdf5_convert=no
|
||||
dnl AC_MSG_RESULT($enable_hdf5_convert)
|
||||
dnl if test "x$enable_hdf5_convert" = xyes; then
|
||||
dnl AC_DEFINE([HDF5_CONVERT], 1, [if true, use HDF5 data conversions])
|
||||
dnl fi
|
||||
|
||||
# Does the user want to run extra example tests
|
||||
AC_MSG_CHECKING([whether extra example tests should be run])
|
||||
AC_ARG_ENABLE([extra-example-tests],
|
||||
@ -221,39 +186,6 @@ AC_ARG_ENABLE([parallel-tests],
|
||||
test "x$enable_parallel_tests" = xyes || enable_parallel_tests=no
|
||||
AC_MSG_RESULT($enable_parallel_tests)
|
||||
|
||||
# Did the user specify a location for the HDF5 library?
|
||||
AC_MSG_CHECKING([whether a location for the HDF5 library was specified])
|
||||
AC_ARG_WITH([hdf5],
|
||||
[AS_HELP_STRING([--with-hdf5=<directory>],
|
||||
[Specify location of HDF5 library. Configure will \
|
||||
expect to find subdirs include and lib.])],
|
||||
[HDF5DIR=$with_hdf5])
|
||||
AC_MSG_RESULT([$HDF5DIR])
|
||||
AC_SUBST(HDF5DIR, [$HDF5DIR])
|
||||
|
||||
# Did the user specify a location for the ZLIB library?
|
||||
AC_MSG_CHECKING([whether a location for the ZLIB library was specified])
|
||||
AC_ARG_WITH([zlib],
|
||||
[AS_HELP_STRING([--with-zlib=<directory>],
|
||||
[Specify location of ZLIB library. ZLIB is required \
|
||||
for netCDF-4. Configure will expect to find subdirs \
|
||||
include and lib.])],
|
||||
[ZLIBDIR=$with_zlib])
|
||||
AC_MSG_RESULT([$ZLIBDIR])
|
||||
AC_SUBST(ZLIBDIR, [$ZLIBDIR])
|
||||
|
||||
# Did the user specify a location for the SZLIB library?
|
||||
AC_MSG_CHECKING([whether a location for the SZLIB library was specified])
|
||||
AC_ARG_WITH([szlib],
|
||||
[AS_HELP_STRING([--with-szlib=<directory>],
|
||||
[Specify location of SZLIB library. SZLIB is not \
|
||||
required for netCDF-4, but you must specify its location \
|
||||
if HDF5 was built with SZLIB. Configure will expect to \
|
||||
find subdirs include and lib.])],
|
||||
[SZLIBDIR=$with_szlib])
|
||||
AC_MSG_RESULT([$SZLIBDIR])
|
||||
AC_SUBST(SZLIBDIR, [$SZLIBDIR])
|
||||
|
||||
# Did the user specify a default chunk size?
|
||||
AC_MSG_CHECKING([whether a default chunk size in bytes was specified])
|
||||
AC_ARG_WITH([default-chunk-size],
|
||||
@ -555,30 +487,13 @@ AC_ARG_ENABLE([compiler-recover],
|
||||
test "x$enable_compiler_recover" = "xno" || enable_compiler_recover=yes
|
||||
AC_MSG_RESULT([$enable_compiler_recover])
|
||||
|
||||
# If --enable-c-only is specified only the C lib will be built.
|
||||
AC_MSG_CHECKING([whether only the C library is desired])
|
||||
AC_ARG_ENABLE([c-only],
|
||||
[AS_HELP_STRING([--enable-c-only],
|
||||
[build only the netCDF C library; same as \
|
||||
--disable-f77 --disable-cxx --disable-v2 --disable-examples \
|
||||
--disable-utilities])])
|
||||
test "x$enable_c_only" = xyes || enable_c_only=no
|
||||
AC_MSG_RESULT([$enable_c_only])
|
||||
if test "x$enable_c_only" = xyes; then
|
||||
nc_build_f77=no
|
||||
nc_build_f90=no
|
||||
nc_build_cxx=no
|
||||
nc_build_v2=no
|
||||
nc_build_utilities=no
|
||||
nc_build_examples=no
|
||||
else
|
||||
nc_build_c=yes
|
||||
nc_build_f77=yes
|
||||
nc_build_f90=yes
|
||||
nc_build_cxx=yes
|
||||
nc_build_v2=yes
|
||||
nc_build_utilities=yes
|
||||
nc_build_examples=yes
|
||||
fi
|
||||
|
||||
# Does the user want to build examples?
|
||||
AC_MSG_CHECKING([whether examples should be built])
|
||||
@ -629,38 +544,6 @@ AC_ARG_ENABLE([fortran-type-check],
|
||||
test "x$enable_fortran_type_check" = xno || enable_fortran_type_check=yes
|
||||
AC_MSG_RESULT($enable_fortran_type_check)
|
||||
|
||||
# Do we want to build the C API? If not, the location of an existing C
|
||||
# library must be specified with --with-netcdf=
|
||||
nc_build_c=yes
|
||||
AC_MSG_CHECKING([whether C API is desired])
|
||||
AC_ARG_ENABLE([c],
|
||||
[AS_HELP_STRING([--disable-c],
|
||||
[don't try to build the netCDF C API (if this option \
|
||||
is specified, the --with-netcdf-c-lib option must \
|
||||
also be used)])])
|
||||
test "x$enable_c" = xno && nc_build_c=no
|
||||
AC_MSG_RESULT([$nc_build_c])
|
||||
|
||||
# If building without the C API (for example to build some Fortran API
|
||||
# for a new Fortran compiler), the --with-netcdf-c-lib= option must be
|
||||
# used to tell where to find the netCDF C API. This must point to a
|
||||
# netCDF C library which does NOT contain the F77 or F90 functions.
|
||||
AC_MSG_CHECKING([where to get netCDF C-only library for separate fortran libraries])
|
||||
AC_ARG_WITH([netcdf-c-lib],
|
||||
[AS_HELP_STRING([--netcdf-c-lib=<directory>],
|
||||
[Specify location of netCDF C-only library (only \
|
||||
valid when --disable-c is also specified).])],
|
||||
[NETCDF_C_LIB=$with_netcdf_c_lib])
|
||||
AM_CONDITIONAL(USE_NETCDF_C_LIB_DIR, [test ! "x$NETCDF_C_LIB" = x])
|
||||
AC_MSG_RESULT($NETCDF_C_LIB)
|
||||
AC_SUBST(NETCDF_C_LIB)
|
||||
|
||||
# If the C API is turned off, a C-only library must be specified.
|
||||
if test "x$nc_build_c" = xno -a "x$NETCDF_C_LIB" = x; then
|
||||
AC_MSG_ERROR([If the C API is disabled, you must specify a location of \
|
||||
a netCDF C-only library with --with-netcdf-c-lib.])
|
||||
fi
|
||||
|
||||
# Do we want to build the C++ API? Check for --disable-cxx as a
|
||||
# configure argument.
|
||||
AC_MSG_CHECKING([whether CXX API is desired])
|
||||
@ -671,11 +554,6 @@ test "x$enable_cxx" = xno && nc_build_cxx=no
|
||||
test "x$nc_null_cxx" = xyes && nc_build_cxx=no
|
||||
AC_MSG_RESULT([$nc_build_cxx])
|
||||
|
||||
# If the C API is turned off, a C++ must also be disabled.
|
||||
if test "x$nc_build_c" = xno -a "x$nc_build_cxx" = xyes; then
|
||||
AC_MSG_ERROR([If the C API is disabled, you must also disable C++ API with --disable-cxx.])
|
||||
fi
|
||||
|
||||
# Does the user want to disable the V2 API?
|
||||
AC_MSG_CHECKING([whether v2 netCDF API should be built])
|
||||
AC_ARG_ENABLE([v2],
|
||||
@ -771,39 +649,6 @@ if test "x$enable_dll" = xyes; then
|
||||
AC_DEFINE(DLL_NETCDF, 1, [set this only when building a DLL under MinGW])
|
||||
fi
|
||||
|
||||
# If --enable-separate-fortran is selected the F77 and F90 APIs will
|
||||
# each get their own libraray instead of being crammed in with the C
|
||||
# functions. If shared libraries are being built, this is turned
|
||||
# on. (Otherwise C programmers using the shared netcdf library would
|
||||
# not be able to run C/netCDF programs without the F90 shared
|
||||
# libraries.)
|
||||
AC_MSG_CHECKING([whether separate fortran libs are desired])
|
||||
AC_ARG_ENABLE([separate-fortran],
|
||||
[AS_HELP_STRING([--enable-separate-fortran],
|
||||
[build F77 and F90 libraries separate from C library \
|
||||
(turned on automatically when shared libraries are built)])])
|
||||
test "x$enable_separate_fortran" = xno || enable_separate_fortran=yes
|
||||
AC_MSG_RESULT([$enable_separate_fortran])
|
||||
AM_CONDITIONAL(BUILD_SEPARATE_FORTRAN, [test x$enable_separate_fortran = xyes])
|
||||
|
||||
# If the C API is turned off, separate fortran must be turned on.
|
||||
if test "x$nc_build_c" = xno -a x$enable_separate_fortran != xyes; then
|
||||
AC_MSG_ERROR([If the C API is disabled, you must use --enable-separate-fortran.])
|
||||
fi
|
||||
|
||||
|
||||
## Does the user want to allow UTF8 characters
|
||||
#AC_MSG_CHECKING([whether UTF8 is allowed in identifiers])
|
||||
#AC_ARG_ENABLE([utf8],
|
||||
# [AS_HELP_STRING([--enable-utf8],
|
||||
# [Allow UTF8.])])
|
||||
#test "x$enable_utf8" = xyes || enable_utf8=no
|
||||
#AC_MSG_RESULT($enable_utf8)
|
||||
#if test "x$enable_utf8" = xyes; then
|
||||
# AC_DEFINE([ALLOW_UTF8], 1, [set this to allow UTF8 characters in identifiers])
|
||||
#fi
|
||||
#AM_CONDITIONAL(ALLOW_UTF8, [test x$enable_utf8 = xyes])
|
||||
|
||||
# According to the autoconf mailing list gurus, we must test for
|
||||
# compilers unconditionally. That is, we can't skip looking for the
|
||||
# fortran compilers, just because the user doesn't want fortran. This
|
||||
@ -812,7 +657,7 @@ fi
|
||||
# Find the C compiler.
|
||||
AC_MSG_NOTICE([finding C compiler])
|
||||
|
||||
AC_PROG_CC(xlc cc c89 acc gcc)
|
||||
AC_PROG_CC
|
||||
AM_PROG_CC_C_O
|
||||
AC_C_CONST
|
||||
|
||||
@ -854,54 +699,8 @@ fi
|
||||
# has told us not to recover from a missing compiler, then bail out
|
||||
# right here.
|
||||
AC_MSG_NOTICE([finding Fortran compiler (will not be used if Fortran API is not desired)])
|
||||
|
||||
# On solaris, f95 comes before gfortran.
|
||||
case "$host" in
|
||||
*solaris*)
|
||||
F77S="xlf fort xlf95 ifort ifc efc pgf77 lf95 f95 f90 g95 gfortran f77 frt pgf95 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 g77"
|
||||
F90S="xlf90 fort xlf95 ifort ifc efc pgf95 lf95 f95 f90 g95 gfortran xlf90 pgf90 epcf90"
|
||||
;;
|
||||
*)
|
||||
F77S="xlf fort xlf95 ifort ifc efc pgf77 lf95 g95 gfortran f77 frt pgf95 f95 f90 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 g77"
|
||||
F90S="xlf90 fort xlf95 ifort ifc efc pgf95 lf95 g95 gfortran f95 f90 f90 xlf90 pgf90 epcf90"
|
||||
;;
|
||||
esac
|
||||
|
||||
# Find a fortran 90 compiler, if possible.
|
||||
# MingW has a wierd problem. If arguments are passed to AC_PROG_FC,
|
||||
# the link of tests won't work (you get a multiply defined atexit
|
||||
# function.) This is annoying, but there it is.
|
||||
if test "$host" = "i686-pc-mingw32"; then
|
||||
AC_PROG_FC
|
||||
else
|
||||
AC_PROG_FC($F90S)
|
||||
fi
|
||||
|
||||
# If we couldn't find an F90 compiler, deal with it.
|
||||
if test "${FC+set}" = set && test "x$FC" = x; then
|
||||
if test "x$enable_compiler_recover" = xno && test "x$nc_build_f90" = xyes; then
|
||||
AC_MSG_ERROR([Can't find F90 compiler, and compiler recovery disabled.])
|
||||
fi
|
||||
AC_MSG_WARN([No F90 compiler found. F90 API will not be built.])
|
||||
nc_build_f90=no
|
||||
fi
|
||||
|
||||
# We must call AC_PROG_F77 here, otherwise the LIBTOOL macro below
|
||||
# will call it, and reset F77 to g77.
|
||||
AC_PROG_F77($F77S)
|
||||
if test "${F77+set}" = set && test "x$F77" = x; then
|
||||
if test "x$enable_compiler_recover" = xno && test "x$nc_build_f77" = xyes; then
|
||||
AC_MSG_ERROR([Can't find F77 compiler, and compiler recovery disabled.])
|
||||
fi
|
||||
AC_MSG_WARN([No F77 compiler found. F77 API will not be built.])
|
||||
nc_build_f77=no
|
||||
fi
|
||||
|
||||
if test "x$nc_build_f90" = xno; then
|
||||
F90=
|
||||
# If F77 is set, and FC isn't, then set FC to whatever F77 was set to.
|
||||
FC=$F77
|
||||
fi
|
||||
AC_PROG_FC
|
||||
AC_PROG_F77($FC)
|
||||
|
||||
# See if the fortran 90 build is desired. If so, set some stuff
|
||||
if test "x$nc_build_f90" = xyes; then
|
||||
@ -909,6 +708,8 @@ if test "x$nc_build_f90" = xyes; then
|
||||
if test "${F90+set}" != set; then
|
||||
F90=$FC
|
||||
fi
|
||||
AC_MSG_CHECKING([what FC is set to])
|
||||
AC_MSG_RESULT([$FC])
|
||||
|
||||
# Some f90 compilers change the case of the mod file names. Others
|
||||
# require special flags to be set to dea with .f90 files. Find out
|
||||
@ -925,23 +726,7 @@ if test "x$nc_build_f90" = xyes; then
|
||||
fi
|
||||
|
||||
AC_MSG_NOTICE([finding C++ compiler (will not be used if C++ API is not desired)])
|
||||
|
||||
# Don't use gcc as a C++ compiler, it won't work unless -lstdc++ is also used.
|
||||
# On cygwin, osf, and apple, go to g++ first.
|
||||
case "$host" in
|
||||
*cygwin*|*osf*|*apple*) CCS="g++ cl KCC CC cxx cc++ xlC aCC c++ g++ egcs";;
|
||||
*) CCS="cl KCC CC cxx cc++ xlC aCC c++ g++ egcs"
|
||||
esac
|
||||
|
||||
AC_PROG_CXX($CCS)
|
||||
|
||||
if test "${CXX+set}" = set && test "x$CXX" = x; then
|
||||
if test "x$enable_compiler_recover" = xno && test "x$nc_build_cxx" = xyes; then
|
||||
AC_MSG_ERROR([Can't find CXX compiler, and compiler recovery disabled.])
|
||||
fi
|
||||
AC_MSG_WARN([No CXX compiler found. The C++ API will not be built.])
|
||||
nc_build_cxx=no
|
||||
fi
|
||||
AC_PROG_CXX
|
||||
|
||||
# Set these conditionals for automake. For some reason, it can't keep
|
||||
# it's SUBDIR order straight if I use BUILD_F77 to attach the nf_test
|
||||
@ -957,8 +742,6 @@ AM_CONDITIONAL(BUILD_CXX, [test "x$nc_build_cxx" = xyes])
|
||||
AC_MSG_NOTICE([setting up libtool])
|
||||
LT_PREREQ([2.4])
|
||||
LT_INIT(win32-dll)
|
||||
#AC_PROG_LIBTOOL
|
||||
lt_cv_ld_force_load=no
|
||||
|
||||
# Valgrind tests don't work with shared builds because of some libtool
|
||||
# weirdness.
|
||||
@ -1013,9 +796,7 @@ AC_MSG_NOTICE([displaying some results])
|
||||
UD_DISPLAY_RESULTS
|
||||
|
||||
# For nightly build testing, output CC, FC, etc.
|
||||
if test x$enable_compiler_recover = xno; then
|
||||
echo "CPPFLAGS=$CPPFLAGS CC=$CC CFLAGS=$CFLAGS CXX=$CXX CXXFLAGS=$CXXFLAGS FC=$FC FCFLAGS=$FCFLAGS F77=$F77 FFLAGS=$FFLAGS LDFLAGS=$LDFLAGS LIBS=$LIBS FLIBS=$FLIBS F90LIBS=$F90LIBS" >> comps.txt
|
||||
fi
|
||||
echo "CPPFLAGS=$CPPFLAGS CC=$CC CFLAGS=$CFLAGS CXX=$CXX CXXFLAGS=$CXXFLAGS FC=$FC FCFLAGS=$FCFLAGS F77=$F77 FFLAGS=$FFLAGS LDFLAGS=$LDFLAGS LIBS=$LIBS FLIBS=$FLIBS F90LIBS=$F90LIBS" >> comps.txt
|
||||
|
||||
ac_cv_prog_f90_uppercase_mod=no
|
||||
|
||||
@ -1067,7 +848,6 @@ AC_CHECK_FUNCS([strlcat strerror snprintf strchr strrchr mktemp strcat strcpy st
|
||||
strcasecmp strtod strtoll getrlimit gettimeofday fsync MPI_Comm_f2c])
|
||||
AC_FUNC_ALLOCA
|
||||
AC_CHECK_DECLS([isnan, isinf, isfinite, signbit],,,[#include <math.h>])
|
||||
#UD_CHECK_LIB_MATH
|
||||
AC_CHECK_LIB([m], [floor], [], [AC_MSG_ERROR([Can't find or link to the math library.])])
|
||||
AC_STRUCT_ST_BLKSIZE
|
||||
UD_CHECK_IEEE
|
||||
@ -1083,58 +863,6 @@ AC_CHECK_SIZEOF(float)
|
||||
AC_CHECK_SIZEOF(double)
|
||||
AC_CHECK_SIZEOF(off_t)
|
||||
AC_CHECK_SIZEOF(size_t)
|
||||
UD_MAKEWHATIS
|
||||
|
||||
# Save the old value of LDFLAGS, it will be restored later.
|
||||
OLD_LDFLAGS=${LDFLAGS}
|
||||
OLD_LIBS=${LIBS}
|
||||
OLD_CPPFLAGS=${CPPFLAGS}
|
||||
|
||||
# Add the HDF5 directory and the math library info for the linker
|
||||
# to use in the tests below.
|
||||
if test ! "x$ZLIBDIR" = x; then
|
||||
LDFLAGS="${LDFLAGS} -L${ZLIBDIR}/lib"
|
||||
CPPFLAGS="${CPPFLAGS} -I${ZLIBDIR}/include"
|
||||
fi
|
||||
if test ! "x$HDF5DIR" = x; then
|
||||
LDFLAGS="${LDFLAGS} -L${HDF5DIR}/lib"
|
||||
CPPFLAGS="${CPPFLAGS} -I${HDF5DIR}/include"
|
||||
fi
|
||||
LIBS="${LIBS} -lm -lz -lhdf5"
|
||||
|
||||
# Add the HDF4 directory and library if needed.
|
||||
if test "x$enable_hdf4" = xyes; then
|
||||
if test ! "x$HDF4DIR" = x; then
|
||||
LDFLAGS="${LDFLAGS} -L${HDF4DIR}/lib"
|
||||
CPPFLAGS="${CPPFLAGS} -I${HDF4DIR}/include"
|
||||
fi
|
||||
LIBS="${LIBS} -lmfhdf -ldf -ljpeg -lz"
|
||||
fi
|
||||
|
||||
# Add the szlib dir and library if needed.
|
||||
nc_has_szlib=no
|
||||
if test ! "x$SZLIBDIR" = x; then
|
||||
LDFLAGS="${LDFLAGS} -L${SZLIBDIR}/lib"
|
||||
LIBS="-lsz ${LIBS}"
|
||||
CPPFLAGS="${CPPFLAGS} -I${SZLIBDIR}/include"
|
||||
nc_has_szlib=yes
|
||||
fi
|
||||
|
||||
# Add the parallel-netcdf dir and library if needed.
|
||||
if test ! "x$PNETCDFDIR" = x; then
|
||||
LDFLAGS="${LDFLAGS} -L${PNETCDFDIR}/lib"
|
||||
LIBS="-lpnetcdf ${LIBS}"
|
||||
CPPFLAGS="${CPPFLAGS} -I${PNETCDFDIR}/include"
|
||||
fi
|
||||
|
||||
# If the user specified a HDF5 directory, assume they want netcdf-4
|
||||
# turned on.
|
||||
if test "x$HDF5DIR" != x; then
|
||||
enable_netcdf_4=yes
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING([whether we should try to build netCDF-4])
|
||||
AC_MSG_RESULT([$enable_netcdf_4])
|
||||
|
||||
if test "x$enable_netcdf_4" = xyes || test "x$enable_dap" = xyes; then
|
||||
AC_CHECK_LIB([z], [deflate], [], [
|
||||
@ -1147,15 +875,14 @@ if test "x$enable_netcdf_4" = xyes; then
|
||||
AC_DEFINE([H5_USE_16_API], [1], [use HDF5 1.6 API])
|
||||
|
||||
# Check for the main hdf5 library.
|
||||
AC_CHECK_LIB([hdf5], [H5Fflush], [], [AC_MSG_ERROR([Can't find or link to the hdf5 library. Configure with --with-hdf5, or use \
|
||||
AC_CHECK_LIB([hdf5], [H5Fflush], [], [AC_MSG_ERROR([Can't find or link to the hdf5 library. Use \
|
||||
--disable-netcdf-4, or see config.log for errors.])])
|
||||
|
||||
# We also require the HDF5 High Level library.
|
||||
AC_CHECK_LIB([hdf5_hl], [H5DSis_scale], [], [AC_MSG_ERROR([Can't find or link to the hdf5 high-level. Configure with --with-hdf5, or use \
|
||||
AC_CHECK_LIB([hdf5_hl], [H5DSis_scale], [], [AC_MSG_ERROR([Can't find or link to the hdf5 high-level. Use \
|
||||
--disable-netcdf-4, or see config.log for errors.])])
|
||||
|
||||
AC_CHECK_HEADERS([hdf5.h], [], [AC_MSG_ERROR([NetCDF-4 requires HDF5, but hdf5.h cannot be found. Try using \
|
||||
the --with-hdf5 option to specify location of HDF5.])])
|
||||
AC_CHECK_HEADERS([hdf5.h], [], [AC_MSG_ERROR([NetCDF-4 requires HDF5, but hdf5.h cannot be found.])])
|
||||
AC_CHECK_FUNCS([H5Pget_fapl_mpiposix H5Pget_fapl_mpio H5Pset_deflate H5Z_can_apply_szip])
|
||||
|
||||
# The user may have parallel HDF5 based on MPI POSIX.
|
||||
@ -1213,11 +940,6 @@ dnl fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# Restore LDFLAGS to it's old value.
|
||||
LDFLAGS=${OLD_LDFLAGS}
|
||||
LIBS=${OLD_LIBS}
|
||||
CPPFLAGS=${OLD_CPPFLAGS}
|
||||
|
||||
# No logging for netcdf-3.
|
||||
if test "x$enable_netcdf_4" = xno; then
|
||||
enable_logging=no
|
||||
@ -1366,11 +1088,7 @@ xsolaris*)
|
||||
*);;
|
||||
esac
|
||||
|
||||
if test "x$enable_separate_fortran" = xyes ; then
|
||||
NC_FLIBS="-lnetcdff $NC_LIBS"
|
||||
else
|
||||
NC_FLIBS="$NC_LIBS"
|
||||
fi
|
||||
NC_FLIBS="-lnetcdff $NC_LIBS"
|
||||
|
||||
AC_SUBST(NC_LIBS,[$NC_LIBS])
|
||||
AC_SUBST(NC_FLIBS,[$NC_FLIBS])
|
||||
@ -1473,21 +1191,6 @@ AC_MSG_NOTICE(LDFLAGS for External libraries: ${EXTERN_LDFLAGS})
|
||||
# cp confdefs.h my_config.h
|
||||
|
||||
AC_MSG_NOTICE([generating header files and makefiles])
|
||||
|
||||
# Took these out from the list below for the 4.1 release.
|
||||
dnl win32/Makefile
|
||||
dnl win32/NET/Makefile
|
||||
dnl win32/NET/libsrc/Makefile
|
||||
dnl win32/NET/ncdump/Makefile
|
||||
dnl win32/NET/ncgen/Makefile
|
||||
dnl win32/NET/examples/Makefile
|
||||
dnl win32/NET/nctest/Makefile
|
||||
dnl win32/NET/nc_test/Makefile
|
||||
|
||||
dnl cxx4/d/Makefile
|
||||
dnl cxx4/d/html/Makefile
|
||||
|
||||
|
||||
AC_CONFIG_FILES([Makefile
|
||||
nc-config
|
||||
netcdf.pc
|
||||
|
@ -3,14 +3,10 @@
|
||||
|
||||
# This file builds F77 examples.
|
||||
|
||||
# $Id: Makefile.am,v 1.28 2010/05/29 00:17:44 dmh Exp $
|
||||
|
||||
AM_LDFLAGS =
|
||||
AM_FFLAGS =
|
||||
|
||||
if BUILD_SEPARATE_FORTRAN
|
||||
AM_LDFLAGS += ${top_builddir}/fortran/libnetcdff.la
|
||||
endif #BUILD_SEPARATE_FORTRAN
|
||||
|
||||
AM_LDFLAGS += ${top_builddir}/liblib/libnetcdf.la @EXTERN_LDFLAGS@
|
||||
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
# This file builds F90 examples.
|
||||
|
||||
# $Id: Makefile.am,v 1.36 2010/05/29 00:17:45 dmh Exp $
|
||||
|
||||
# Some fortran compilers think your files should not have an .f90
|
||||
# extension! The value of FCFLAGS_f90 is set in the configure script,
|
||||
# based on the fortran compiler.
|
||||
@ -19,10 +17,7 @@ AM_LDFLAGS =
|
||||
AM_FCFLAGS += -I$(top_srcdir) -I$(top_srcdir)/fortran -I$(top_builddir)/f90 @MOD_FLAG@$(top_builddir)/f90
|
||||
AM_FFLAGS += ${AM_FCFLAGS}
|
||||
|
||||
if BUILD_SEPARATE_FORTRAN
|
||||
AM_LDFLAGS += ${top_builddir}/fortran/libnetcdff.la
|
||||
endif #BUILD_SEPARATE_FORTRAN
|
||||
|
||||
AM_LDFLAGS += ${top_builddir}/liblib/libnetcdf.la @EXTERN_LDFLAGS@
|
||||
|
||||
# These are the example programs.
|
||||
|
@ -4,12 +4,6 @@
|
||||
# This file controls the building of the fortran 90 API. All testing
|
||||
# of the F90 API is done in the nf_test directory.
|
||||
|
||||
# The F90 library is always built as a convenience library. It is
|
||||
# included by the netCDF-4 library in libsrc4, or the netCDF-3 library
|
||||
# in libsrc, or the separate fortran library in fortran.
|
||||
|
||||
# $Id: Makefile.am,v 1.51 2010/05/29 00:20:53 dmh Exp $
|
||||
|
||||
AM_FCFLAGS =
|
||||
AM_LDFLAGS =
|
||||
|
||||
|
@ -72,14 +72,8 @@ if USE_NETCDF4
|
||||
libnetcdff_la_SOURCES += fort-nc4.c
|
||||
endif
|
||||
|
||||
# The fortran-77 library may be build stand-alone, or as part of the C
|
||||
# library.
|
||||
if BUILD_SEPARATE_FORTRAN
|
||||
lib_LTLIBRARIES = libnetcdff.la
|
||||
libnetcdff_la_LDFLAGS += -version-number 5:1:0
|
||||
else
|
||||
noinst_LTLIBRARIES = libnetcdff.la
|
||||
endif # BUILD_SEPARATE_FORTRAN
|
||||
|
||||
# Turn on some special flags for building DLL.
|
||||
if BUILD_DLL
|
||||
|
30
lib_flags.am
30
lib_flags.am
@ -9,36 +9,6 @@
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include
|
||||
AM_LDFLAGS =
|
||||
|
||||
# If the user specified a root location for HDF5, use it.
|
||||
if USE_HDF5_DIR
|
||||
AM_CPPFLAGS += -I@HDF5DIR@/include
|
||||
AM_LDFLAGS += -L@HDF5DIR@/lib
|
||||
endif
|
||||
|
||||
# If the user specified a root location for ZLIB, use it.
|
||||
if USE_ZLIB_DIR
|
||||
AM_CPPFLAGS += -I@ZLIBDIR@/include
|
||||
AM_LDFLAGS += -L@ZLIBDIR@/lib
|
||||
endif
|
||||
|
||||
# If the user specified a root location for SZLIB, use it.
|
||||
if USE_SZLIB_DIR
|
||||
AM_CPPFLAGS += -I@SZLIBDIR@/include
|
||||
AM_LDFLAGS += -L@SZLIBDIR@/lib
|
||||
endif
|
||||
|
||||
# If the user specified a root location for pnetcdf, use it.
|
||||
if USE_PNETCDF_DIR
|
||||
AM_CPPFLAGS += -I@PNETCDFDIR@/include
|
||||
AM_LDFLAGS += -L@PNETCDFDIR@/lib
|
||||
endif
|
||||
|
||||
# If the user specified a root location for HDF4, use it.
|
||||
if USE_HDF4_DIR
|
||||
AM_CPPFLAGS += -I@HDF4DIR@/include
|
||||
AM_LDFLAGS += -L@HDF4DIR@/lib
|
||||
endif
|
||||
|
||||
if USE_DAP
|
||||
AM_CPPFLAGS += -I${top_srcdir}/oc
|
||||
endif
|
||||
|
@ -1,999 +0,0 @@
|
||||
# Makefile.in generated by automake 1.11.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
|
||||
# Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
# Copyright 2005, see the COPYRIGHT file for more information.
|
||||
|
||||
# This automake file generates the Makefile to build netCDF-4. The
|
||||
# generated makefile is not run unless the user selected to build
|
||||
# netCDF-4.
|
||||
|
||||
# $Id: Makefile.am,v 1.41 2010/05/29 18:45:47 dmh Exp $
|
||||
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
@USE_NETCDF4_TRUE@am__append_1 = cdf4.c constraints4.c ncd4dispatch.c ncdap4.c getvara4.c
|
||||
@USE_NETCDF4_TRUE@am__append_2 = constraints4.h ncd4dispatch.h ncdap4.h
|
||||
@BUILD_DAP_TRUE@am__append_3 = -I${top_srcdir}/libdispatch
|
||||
@BUILD_DAP_TRUE@@USE_NETCDF4_TRUE@am__append_4 = -I$(top_srcdir)/libsrc4
|
||||
@BUILD_DAP_TRUE@am__append_5 = -I$(top_srcdir)/libsrc \
|
||||
@BUILD_DAP_TRUE@ -I${top_srcdir}/oc @EXTERN_CPPFLAGS@
|
||||
@BUILD_DAP_TRUE@am__append_6 = libdap2.la
|
||||
@BUILD_DAP_TRUE@@USE_NETCDF4_TRUE@am__append_7 = ${top_builddir}/libsrc4/libnetcdf4.la
|
||||
@BUILD_DAP_TRUE@am__append_8 = ${top_builddir}/libsrc/libnetcdf3.la \
|
||||
@BUILD_DAP_TRUE@ ${top_builddir}/oc/liboc.la \
|
||||
@BUILD_DAP_TRUE@ ${top_builddir}/libdispatch/libdispatch.la
|
||||
|
||||
@BUILD_DAP_TRUE@@BUILD_V2_TRUE@am__append_9 = ${top_builddir}/libdispatch/libnetcdf2.la
|
||||
@BUILD_DAP_TRUE@am__append_10 = @EXTERN_LDFLAGS@
|
||||
|
||||
# Add a trivial test case to check for undefined references
|
||||
@BUILD_DAP_TRUE@am__append_11 = t_dap.c
|
||||
@BUILD_DAP_TRUE@check_PROGRAMS = t_dap3a$(EXEEXT) t_dap3c$(EXEEXT) \
|
||||
@BUILD_DAP_TRUE@ $(am__EXEEXT_1)
|
||||
@BUILD_DAP_TRUE@am__append_12 = t_dap3a t_dap3c
|
||||
@BUILD_DAP_TRUE@TESTS = t_dap3a$(EXEEXT) t_dap3c$(EXEEXT) \
|
||||
@BUILD_DAP_TRUE@ $(am__EXEEXT_1)
|
||||
@BUILD_DAP_TRUE@@USE_NETCDF4_TRUE@am__append_13 = t_dap4a
|
||||
@BUILD_DAP_TRUE@@USE_NETCDF4_TRUE@am__append_14 = t_dap4a
|
||||
@BUILD_DAP_TRUE@@USE_NETCDF4_TRUE@am__append_15 = t_dap4a
|
||||
subdir = libdap2
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config.h \
|
||||
$(top_builddir)/fortran/nfconfig1.inc
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
LTLIBRARIES = $(noinst_LTLIBRARIES)
|
||||
libdap2_la_DEPENDENCIES =
|
||||
am__libdap2_la_SOURCES_DIST = constraints3.c common34.c dapcvt.c \
|
||||
dapalign.c dapodom.c daputil.c ncdaperr.c cdf3.c cache.c \
|
||||
dapdump.c dapdebug.c dapattr3.c ncd3dispatch.c ncdap3.c \
|
||||
ncdap3a.c getvara3.c dceconstraints.c dcetab.c dceparse.c \
|
||||
dcelex.c cdf4.c constraints4.c ncd4dispatch.c ncdap4.c \
|
||||
getvara4.c nccommon.h constraints3.h ncd3dispatch.h ncdap3.h \
|
||||
dapalign.h dapodom.h getvara.h dapnc.h daputil.h dapdebug.h \
|
||||
dapdump.h dceconstraints.h dcetab.h dceparselex.h \
|
||||
constraints4.h ncd4dispatch.h ncdap4.h
|
||||
@USE_NETCDF4_TRUE@am__objects_1 = libdap2_la-cdf4.lo \
|
||||
@USE_NETCDF4_TRUE@ libdap2_la-constraints4.lo \
|
||||
@USE_NETCDF4_TRUE@ libdap2_la-ncd4dispatch.lo \
|
||||
@USE_NETCDF4_TRUE@ libdap2_la-ncdap4.lo libdap2_la-getvara4.lo
|
||||
am__objects_2 = libdap2_la-constraints3.lo libdap2_la-common34.lo \
|
||||
libdap2_la-dapcvt.lo libdap2_la-dapalign.lo \
|
||||
libdap2_la-dapodom.lo libdap2_la-daputil.lo \
|
||||
libdap2_la-ncdaperr.lo libdap2_la-cdf3.lo libdap2_la-cache.lo \
|
||||
libdap2_la-dapdump.lo libdap2_la-dapdebug.lo \
|
||||
libdap2_la-dapattr3.lo libdap2_la-ncd3dispatch.lo \
|
||||
libdap2_la-ncdap3.lo libdap2_la-ncdap3a.lo \
|
||||
libdap2_la-getvara3.lo libdap2_la-dceconstraints.lo \
|
||||
libdap2_la-dcetab.lo libdap2_la-dceparse.lo \
|
||||
libdap2_la-dcelex.lo $(am__objects_1)
|
||||
am__objects_3 =
|
||||
am__objects_4 = $(am__objects_3)
|
||||
@BUILD_DAP_TRUE@am_libdap2_la_OBJECTS = $(am__objects_2) \
|
||||
@BUILD_DAP_TRUE@ $(am__objects_4)
|
||||
libdap2_la_OBJECTS = $(am_libdap2_la_OBJECTS)
|
||||
@BUILD_DAP_TRUE@am_libdap2_la_rpath =
|
||||
@BUILD_DAP_TRUE@@USE_NETCDF4_TRUE@am__EXEEXT_1 = t_dap4a$(EXEEXT)
|
||||
am__t_dap3a_SOURCES_DIST = t_dap3a.c stubdap3.c
|
||||
@BUILD_DAP_TRUE@am_t_dap3a_OBJECTS = t_dap3a.$(OBJEXT) \
|
||||
@BUILD_DAP_TRUE@ stubdap3.$(OBJEXT)
|
||||
t_dap3a_OBJECTS = $(am_t_dap3a_OBJECTS)
|
||||
t_dap3a_LDADD = $(LDADD)
|
||||
am__DEPENDENCIES_1 =
|
||||
t_dap3a_DEPENDENCIES = $(am__append_6) $(am__append_7) $(am__append_8) \
|
||||
$(am__append_9) $(am__DEPENDENCIES_1)
|
||||
am__t_dap3c_SOURCES_DIST = t_dap3c.c stubdap3.c
|
||||
@BUILD_DAP_TRUE@am_t_dap3c_OBJECTS = t_dap3c.$(OBJEXT) \
|
||||
@BUILD_DAP_TRUE@ stubdap3.$(OBJEXT)
|
||||
t_dap3c_OBJECTS = $(am_t_dap3c_OBJECTS)
|
||||
t_dap3c_LDADD = $(LDADD)
|
||||
t_dap3c_DEPENDENCIES = $(am__append_6) $(am__append_7) $(am__append_8) \
|
||||
$(am__append_9) $(am__DEPENDENCIES_1)
|
||||
am__t_dap4a_SOURCES_DIST = t_dap4a.c stubdap4.c
|
||||
@BUILD_DAP_TRUE@@USE_NETCDF4_TRUE@am_t_dap4a_OBJECTS = \
|
||||
@BUILD_DAP_TRUE@@USE_NETCDF4_TRUE@ t_dap4a.$(OBJEXT) \
|
||||
@BUILD_DAP_TRUE@@USE_NETCDF4_TRUE@ stubdap4.$(OBJEXT)
|
||||
t_dap4a_OBJECTS = $(am_t_dap4a_OBJECTS)
|
||||
t_dap4a_LDADD = $(LDADD)
|
||||
t_dap4a_DEPENDENCIES = $(am__append_6) $(am__append_7) $(am__append_8) \
|
||||
$(am__append_9) $(am__DEPENDENCIES_1)
|
||||
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -I$(top_builddir)/fortran
|
||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
SOURCES = $(libdap2_la_SOURCES) $(t_dap3a_SOURCES) $(t_dap3c_SOURCES) \
|
||||
$(t_dap4a_SOURCES)
|
||||
DIST_SOURCES = $(am__libdap2_la_SOURCES_DIST) \
|
||||
$(am__t_dap3a_SOURCES_DIST) $(am__t_dap3c_SOURCES_DIST) \
|
||||
$(am__t_dap4a_SOURCES_DIST)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
am__tty_colors = \
|
||||
red=; grn=; lgn=; blu=; std=
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = @ACLOCAL@
|
||||
ALLOCA = @ALLOCA@
|
||||
AMTAR = @AMTAR@
|
||||
AR = @AR@
|
||||
AS = @AS@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
BINFILE_NAME = @BINFILE_NAME@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CURLDIR = @CURLDIR@
|
||||
CURL_CFLAGS = @CURL_CFLAGS@
|
||||
CURL_FCFLAGS = @CURL_FCFLAGS@
|
||||
CURL_FFLAGS = @CURL_FFLAGS@
|
||||
CURL_LIBS = @CURL_LIBS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DLLTOOL = @DLLTOOL@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
EXTERN_CFLAGS = @EXTERN_CFLAGS@
|
||||
EXTERN_CPPFLAGS = @EXTERN_CPPFLAGS@
|
||||
EXTERN_LDFLAGS = @EXTERN_LDFLAGS@
|
||||
F77 = @F77@
|
||||
FC = @FC@
|
||||
FCFLAGS = @FCFLAGS@
|
||||
FCFLAGS_f90 = @FCFLAGS_f90@
|
||||
FFLAGS = @FFLAGS@
|
||||
FGREP = @FGREP@
|
||||
FTPBINDIR = @FTPBINDIR@
|
||||
GREP = @GREP@
|
||||
HAS_CXX = @HAS_CXX@
|
||||
HAS_DAP = @HAS_DAP@
|
||||
HAS_F77 = @HAS_F77@
|
||||
HAS_F90 = @HAS_F90@
|
||||
HAS_HDF4 = @HAS_HDF4@
|
||||
HAS_HDF5 = @HAS_HDF5@
|
||||
HAS_NC2 = @HAS_NC2@
|
||||
HAS_NC4 = @HAS_NC4@
|
||||
HAS_PNETCDF = @HAS_PNETCDF@
|
||||
HAS_SZLIB = @HAS_SZLIB@
|
||||
HDF4DIR = @HDF4DIR@
|
||||
HDF5DIR = @HDF5DIR@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MAKEWHATIS_CMD = @MAKEWHATIS_CMD@
|
||||
MANIFEST_TOOL = @MANIFEST_TOOL@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
MOD_FLAG = @MOD_FLAG@
|
||||
NC_FLIBS = @NC_FLIBS@
|
||||
NC_LIBS = @NC_LIBS@
|
||||
NETCDF_C_LIB = @NETCDF_C_LIB@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
NMFLAGS = @NMFLAGS@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PNETCDFDIR = @PNETCDFDIR@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
SZLIBDIR = @SZLIBDIR@
|
||||
VERSION = @VERSION@
|
||||
WHATIS = @WHATIS@
|
||||
ZLIBDIR = @ZLIBDIR@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_AR = @ac_ct_AR@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
ac_ct_F77 = @ac_ct_F77@
|
||||
ac_ct_FC = @ac_ct_FC@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
prog = @prog@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
subdirs = @subdirs@
|
||||
sysconfdir = @sysconfdir@
|
||||
target = @target@
|
||||
target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
|
||||
# We may have to add to these later.
|
||||
DISTCLEANFILES = .dodsrc
|
||||
MAINTAINERCLEANFILES =
|
||||
CLEANFILES = $(am__append_12) $(am__append_14)
|
||||
|
||||
# These rule are used if someone wants to rebuild the grammar files.
|
||||
# Otherwise never invoked, but records how to do it.
|
||||
# BTW: note that renaming is essential because otherwise
|
||||
# autoconf will forcibly delete files of the name *.tab.*
|
||||
EXTRA_DIST = $(am__append_11) dce.y
|
||||
LDADD = $(am__append_6) $(am__append_7) $(am__append_8) \
|
||||
$(am__append_9) $(am__append_10)
|
||||
AM_LDFLAGS =
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include $(am__append_3) $(am__append_4) \
|
||||
$(am__append_5)
|
||||
SRC = constraints3.c common34.c dapcvt.c dapalign.c dapodom.c \
|
||||
daputil.c ncdaperr.c cdf3.c cache.c dapdump.c dapdebug.c \
|
||||
dapattr3.c ncd3dispatch.c ncdap3.c ncdap3a.c getvara3.c \
|
||||
dceconstraints.c dcetab.c dceparse.c dcelex.c $(am__append_1)
|
||||
HDRS = nccommon.h constraints3.h ncd3dispatch.h ncdap3.h dapalign.h \
|
||||
dapodom.h getvara.h dapnc.h daputil.h dapdebug.h dapdump.h \
|
||||
dceconstraints.h dcetab.h dceparselex.h $(am__append_2)
|
||||
@BUILD_DAP_TRUE@noinst_LTLIBRARIES = libdap2.la
|
||||
|
||||
# Build convenience library
|
||||
@BUILD_DAP_TRUE@libdap2_la_SOURCES = $(SRC) $(HDRS)
|
||||
@BUILD_DAP_TRUE@libdap2_la_CPPFLAGS = $(AM_CPPFLAGS)
|
||||
@BUILD_DAP_TRUE@libdap2_la_LIBADD =
|
||||
@BUILD_DAP_TRUE@TESTS_ENVIRONMENT = TOPSRCDIR=${abs_top_srcdir}
|
||||
@BUILD_DAP_TRUE@t_dap3a_SOURCES = t_dap3a.c stubdap3.c
|
||||
@BUILD_DAP_TRUE@t_dap3c_SOURCES = t_dap3c.c stubdap3.c
|
||||
@BUILD_DAP_TRUE@@USE_NETCDF4_TRUE@t_dap4a_SOURCES = t_dap4a.c stubdap4.c
|
||||
|
||||
# One last thing
|
||||
BUILT_SOURCES = .dodsrc
|
||||
all: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libdap2/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --foreign libdap2/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
clean-noinstLTLIBRARIES:
|
||||
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
||||
@list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libdap2.la: $(libdap2_la_OBJECTS) $(libdap2_la_DEPENDENCIES)
|
||||
$(LINK) $(am_libdap2_la_rpath) $(libdap2_la_OBJECTS) $(libdap2_la_LIBADD) $(LIBS)
|
||||
|
||||
clean-checkPROGRAMS:
|
||||
@list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
|
||||
echo " rm -f" $$list; \
|
||||
rm -f $$list || exit $$?; \
|
||||
test -n "$(EXEEXT)" || exit 0; \
|
||||
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
|
||||
echo " rm -f" $$list; \
|
||||
rm -f $$list
|
||||
t_dap3a$(EXEEXT): $(t_dap3a_OBJECTS) $(t_dap3a_DEPENDENCIES)
|
||||
@rm -f t_dap3a$(EXEEXT)
|
||||
$(LINK) $(t_dap3a_OBJECTS) $(t_dap3a_LDADD) $(LIBS)
|
||||
t_dap3c$(EXEEXT): $(t_dap3c_OBJECTS) $(t_dap3c_DEPENDENCIES)
|
||||
@rm -f t_dap3c$(EXEEXT)
|
||||
$(LINK) $(t_dap3c_OBJECTS) $(t_dap3c_LDADD) $(LIBS)
|
||||
t_dap4a$(EXEEXT): $(t_dap4a_OBJECTS) $(t_dap4a_DEPENDENCIES)
|
||||
@rm -f t_dap4a$(EXEEXT)
|
||||
$(LINK) $(t_dap4a_OBJECTS) $(t_dap4a_LDADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-cache.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-cdf3.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-cdf4.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-common34.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-constraints3.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-constraints4.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-dapalign.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-dapattr3.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-dapcvt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-dapdebug.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-dapdump.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-dapodom.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-daputil.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-dceconstraints.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-dcelex.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-dceparse.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-dcetab.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-getvara3.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-getvara4.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-ncd3dispatch.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-ncd4dispatch.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-ncdap3.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-ncdap3a.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-ncdap4.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdap2_la-ncdaperr.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stubdap3.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stubdap4.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t_dap3a.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t_dap3c.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t_dap4a.Po@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ $<
|
||||
|
||||
.c.obj:
|
||||
@am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
|
||||
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
@am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
|
||||
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
libdap2_la-constraints3.lo: constraints3.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-constraints3.lo -MD -MP -MF $(DEPDIR)/libdap2_la-constraints3.Tpo -c -o libdap2_la-constraints3.lo `test -f 'constraints3.c' || echo '$(srcdir)/'`constraints3.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-constraints3.Tpo $(DEPDIR)/libdap2_la-constraints3.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='constraints3.c' object='libdap2_la-constraints3.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-constraints3.lo `test -f 'constraints3.c' || echo '$(srcdir)/'`constraints3.c
|
||||
|
||||
libdap2_la-common34.lo: common34.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-common34.lo -MD -MP -MF $(DEPDIR)/libdap2_la-common34.Tpo -c -o libdap2_la-common34.lo `test -f 'common34.c' || echo '$(srcdir)/'`common34.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-common34.Tpo $(DEPDIR)/libdap2_la-common34.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='common34.c' object='libdap2_la-common34.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-common34.lo `test -f 'common34.c' || echo '$(srcdir)/'`common34.c
|
||||
|
||||
libdap2_la-dapcvt.lo: dapcvt.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-dapcvt.lo -MD -MP -MF $(DEPDIR)/libdap2_la-dapcvt.Tpo -c -o libdap2_la-dapcvt.lo `test -f 'dapcvt.c' || echo '$(srcdir)/'`dapcvt.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-dapcvt.Tpo $(DEPDIR)/libdap2_la-dapcvt.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dapcvt.c' object='libdap2_la-dapcvt.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-dapcvt.lo `test -f 'dapcvt.c' || echo '$(srcdir)/'`dapcvt.c
|
||||
|
||||
libdap2_la-dapalign.lo: dapalign.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-dapalign.lo -MD -MP -MF $(DEPDIR)/libdap2_la-dapalign.Tpo -c -o libdap2_la-dapalign.lo `test -f 'dapalign.c' || echo '$(srcdir)/'`dapalign.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-dapalign.Tpo $(DEPDIR)/libdap2_la-dapalign.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dapalign.c' object='libdap2_la-dapalign.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-dapalign.lo `test -f 'dapalign.c' || echo '$(srcdir)/'`dapalign.c
|
||||
|
||||
libdap2_la-dapodom.lo: dapodom.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-dapodom.lo -MD -MP -MF $(DEPDIR)/libdap2_la-dapodom.Tpo -c -o libdap2_la-dapodom.lo `test -f 'dapodom.c' || echo '$(srcdir)/'`dapodom.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-dapodom.Tpo $(DEPDIR)/libdap2_la-dapodom.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dapodom.c' object='libdap2_la-dapodom.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-dapodom.lo `test -f 'dapodom.c' || echo '$(srcdir)/'`dapodom.c
|
||||
|
||||
libdap2_la-daputil.lo: daputil.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-daputil.lo -MD -MP -MF $(DEPDIR)/libdap2_la-daputil.Tpo -c -o libdap2_la-daputil.lo `test -f 'daputil.c' || echo '$(srcdir)/'`daputil.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-daputil.Tpo $(DEPDIR)/libdap2_la-daputil.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='daputil.c' object='libdap2_la-daputil.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-daputil.lo `test -f 'daputil.c' || echo '$(srcdir)/'`daputil.c
|
||||
|
||||
libdap2_la-ncdaperr.lo: ncdaperr.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-ncdaperr.lo -MD -MP -MF $(DEPDIR)/libdap2_la-ncdaperr.Tpo -c -o libdap2_la-ncdaperr.lo `test -f 'ncdaperr.c' || echo '$(srcdir)/'`ncdaperr.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-ncdaperr.Tpo $(DEPDIR)/libdap2_la-ncdaperr.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ncdaperr.c' object='libdap2_la-ncdaperr.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-ncdaperr.lo `test -f 'ncdaperr.c' || echo '$(srcdir)/'`ncdaperr.c
|
||||
|
||||
libdap2_la-cdf3.lo: cdf3.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-cdf3.lo -MD -MP -MF $(DEPDIR)/libdap2_la-cdf3.Tpo -c -o libdap2_la-cdf3.lo `test -f 'cdf3.c' || echo '$(srcdir)/'`cdf3.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-cdf3.Tpo $(DEPDIR)/libdap2_la-cdf3.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cdf3.c' object='libdap2_la-cdf3.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-cdf3.lo `test -f 'cdf3.c' || echo '$(srcdir)/'`cdf3.c
|
||||
|
||||
libdap2_la-cache.lo: cache.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-cache.lo -MD -MP -MF $(DEPDIR)/libdap2_la-cache.Tpo -c -o libdap2_la-cache.lo `test -f 'cache.c' || echo '$(srcdir)/'`cache.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-cache.Tpo $(DEPDIR)/libdap2_la-cache.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cache.c' object='libdap2_la-cache.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-cache.lo `test -f 'cache.c' || echo '$(srcdir)/'`cache.c
|
||||
|
||||
libdap2_la-dapdump.lo: dapdump.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-dapdump.lo -MD -MP -MF $(DEPDIR)/libdap2_la-dapdump.Tpo -c -o libdap2_la-dapdump.lo `test -f 'dapdump.c' || echo '$(srcdir)/'`dapdump.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-dapdump.Tpo $(DEPDIR)/libdap2_la-dapdump.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dapdump.c' object='libdap2_la-dapdump.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-dapdump.lo `test -f 'dapdump.c' || echo '$(srcdir)/'`dapdump.c
|
||||
|
||||
libdap2_la-dapdebug.lo: dapdebug.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-dapdebug.lo -MD -MP -MF $(DEPDIR)/libdap2_la-dapdebug.Tpo -c -o libdap2_la-dapdebug.lo `test -f 'dapdebug.c' || echo '$(srcdir)/'`dapdebug.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-dapdebug.Tpo $(DEPDIR)/libdap2_la-dapdebug.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dapdebug.c' object='libdap2_la-dapdebug.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-dapdebug.lo `test -f 'dapdebug.c' || echo '$(srcdir)/'`dapdebug.c
|
||||
|
||||
libdap2_la-dapattr3.lo: dapattr3.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-dapattr3.lo -MD -MP -MF $(DEPDIR)/libdap2_la-dapattr3.Tpo -c -o libdap2_la-dapattr3.lo `test -f 'dapattr3.c' || echo '$(srcdir)/'`dapattr3.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-dapattr3.Tpo $(DEPDIR)/libdap2_la-dapattr3.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dapattr3.c' object='libdap2_la-dapattr3.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-dapattr3.lo `test -f 'dapattr3.c' || echo '$(srcdir)/'`dapattr3.c
|
||||
|
||||
libdap2_la-ncd3dispatch.lo: ncd3dispatch.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-ncd3dispatch.lo -MD -MP -MF $(DEPDIR)/libdap2_la-ncd3dispatch.Tpo -c -o libdap2_la-ncd3dispatch.lo `test -f 'ncd3dispatch.c' || echo '$(srcdir)/'`ncd3dispatch.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-ncd3dispatch.Tpo $(DEPDIR)/libdap2_la-ncd3dispatch.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ncd3dispatch.c' object='libdap2_la-ncd3dispatch.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-ncd3dispatch.lo `test -f 'ncd3dispatch.c' || echo '$(srcdir)/'`ncd3dispatch.c
|
||||
|
||||
libdap2_la-ncdap3.lo: ncdap3.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-ncdap3.lo -MD -MP -MF $(DEPDIR)/libdap2_la-ncdap3.Tpo -c -o libdap2_la-ncdap3.lo `test -f 'ncdap3.c' || echo '$(srcdir)/'`ncdap3.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-ncdap3.Tpo $(DEPDIR)/libdap2_la-ncdap3.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ncdap3.c' object='libdap2_la-ncdap3.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-ncdap3.lo `test -f 'ncdap3.c' || echo '$(srcdir)/'`ncdap3.c
|
||||
|
||||
libdap2_la-ncdap3a.lo: ncdap3a.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-ncdap3a.lo -MD -MP -MF $(DEPDIR)/libdap2_la-ncdap3a.Tpo -c -o libdap2_la-ncdap3a.lo `test -f 'ncdap3a.c' || echo '$(srcdir)/'`ncdap3a.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-ncdap3a.Tpo $(DEPDIR)/libdap2_la-ncdap3a.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ncdap3a.c' object='libdap2_la-ncdap3a.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-ncdap3a.lo `test -f 'ncdap3a.c' || echo '$(srcdir)/'`ncdap3a.c
|
||||
|
||||
libdap2_la-getvara3.lo: getvara3.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-getvara3.lo -MD -MP -MF $(DEPDIR)/libdap2_la-getvara3.Tpo -c -o libdap2_la-getvara3.lo `test -f 'getvara3.c' || echo '$(srcdir)/'`getvara3.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-getvara3.Tpo $(DEPDIR)/libdap2_la-getvara3.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='getvara3.c' object='libdap2_la-getvara3.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-getvara3.lo `test -f 'getvara3.c' || echo '$(srcdir)/'`getvara3.c
|
||||
|
||||
libdap2_la-dceconstraints.lo: dceconstraints.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-dceconstraints.lo -MD -MP -MF $(DEPDIR)/libdap2_la-dceconstraints.Tpo -c -o libdap2_la-dceconstraints.lo `test -f 'dceconstraints.c' || echo '$(srcdir)/'`dceconstraints.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-dceconstraints.Tpo $(DEPDIR)/libdap2_la-dceconstraints.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dceconstraints.c' object='libdap2_la-dceconstraints.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-dceconstraints.lo `test -f 'dceconstraints.c' || echo '$(srcdir)/'`dceconstraints.c
|
||||
|
||||
libdap2_la-dcetab.lo: dcetab.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-dcetab.lo -MD -MP -MF $(DEPDIR)/libdap2_la-dcetab.Tpo -c -o libdap2_la-dcetab.lo `test -f 'dcetab.c' || echo '$(srcdir)/'`dcetab.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-dcetab.Tpo $(DEPDIR)/libdap2_la-dcetab.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dcetab.c' object='libdap2_la-dcetab.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-dcetab.lo `test -f 'dcetab.c' || echo '$(srcdir)/'`dcetab.c
|
||||
|
||||
libdap2_la-dceparse.lo: dceparse.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-dceparse.lo -MD -MP -MF $(DEPDIR)/libdap2_la-dceparse.Tpo -c -o libdap2_la-dceparse.lo `test -f 'dceparse.c' || echo '$(srcdir)/'`dceparse.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-dceparse.Tpo $(DEPDIR)/libdap2_la-dceparse.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dceparse.c' object='libdap2_la-dceparse.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-dceparse.lo `test -f 'dceparse.c' || echo '$(srcdir)/'`dceparse.c
|
||||
|
||||
libdap2_la-dcelex.lo: dcelex.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-dcelex.lo -MD -MP -MF $(DEPDIR)/libdap2_la-dcelex.Tpo -c -o libdap2_la-dcelex.lo `test -f 'dcelex.c' || echo '$(srcdir)/'`dcelex.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-dcelex.Tpo $(DEPDIR)/libdap2_la-dcelex.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dcelex.c' object='libdap2_la-dcelex.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-dcelex.lo `test -f 'dcelex.c' || echo '$(srcdir)/'`dcelex.c
|
||||
|
||||
libdap2_la-cdf4.lo: cdf4.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-cdf4.lo -MD -MP -MF $(DEPDIR)/libdap2_la-cdf4.Tpo -c -o libdap2_la-cdf4.lo `test -f 'cdf4.c' || echo '$(srcdir)/'`cdf4.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-cdf4.Tpo $(DEPDIR)/libdap2_la-cdf4.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cdf4.c' object='libdap2_la-cdf4.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-cdf4.lo `test -f 'cdf4.c' || echo '$(srcdir)/'`cdf4.c
|
||||
|
||||
libdap2_la-constraints4.lo: constraints4.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-constraints4.lo -MD -MP -MF $(DEPDIR)/libdap2_la-constraints4.Tpo -c -o libdap2_la-constraints4.lo `test -f 'constraints4.c' || echo '$(srcdir)/'`constraints4.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-constraints4.Tpo $(DEPDIR)/libdap2_la-constraints4.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='constraints4.c' object='libdap2_la-constraints4.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-constraints4.lo `test -f 'constraints4.c' || echo '$(srcdir)/'`constraints4.c
|
||||
|
||||
libdap2_la-ncd4dispatch.lo: ncd4dispatch.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-ncd4dispatch.lo -MD -MP -MF $(DEPDIR)/libdap2_la-ncd4dispatch.Tpo -c -o libdap2_la-ncd4dispatch.lo `test -f 'ncd4dispatch.c' || echo '$(srcdir)/'`ncd4dispatch.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-ncd4dispatch.Tpo $(DEPDIR)/libdap2_la-ncd4dispatch.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ncd4dispatch.c' object='libdap2_la-ncd4dispatch.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-ncd4dispatch.lo `test -f 'ncd4dispatch.c' || echo '$(srcdir)/'`ncd4dispatch.c
|
||||
|
||||
libdap2_la-ncdap4.lo: ncdap4.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-ncdap4.lo -MD -MP -MF $(DEPDIR)/libdap2_la-ncdap4.Tpo -c -o libdap2_la-ncdap4.lo `test -f 'ncdap4.c' || echo '$(srcdir)/'`ncdap4.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-ncdap4.Tpo $(DEPDIR)/libdap2_la-ncdap4.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ncdap4.c' object='libdap2_la-ncdap4.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-ncdap4.lo `test -f 'ncdap4.c' || echo '$(srcdir)/'`ncdap4.c
|
||||
|
||||
libdap2_la-getvara4.lo: getvara4.c
|
||||
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libdap2_la-getvara4.lo -MD -MP -MF $(DEPDIR)/libdap2_la-getvara4.Tpo -c -o libdap2_la-getvara4.lo `test -f 'getvara4.c' || echo '$(srcdir)/'`getvara4.c
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libdap2_la-getvara4.Tpo $(DEPDIR)/libdap2_la-getvara4.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='getvara4.c' object='libdap2_la-getvara4.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdap2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libdap2_la-getvara4.lo `test -f 'getvara4.c' || echo '$(srcdir)/'`getvara4.c
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
check-TESTS: $(TESTS)
|
||||
@failed=0; all=0; xfail=0; xpass=0; skip=0; \
|
||||
srcdir=$(srcdir); export srcdir; \
|
||||
list=' $(TESTS) '; \
|
||||
$(am__tty_colors); \
|
||||
if test -n "$$list"; then \
|
||||
for tst in $$list; do \
|
||||
if test -f ./$$tst; then dir=./; \
|
||||
elif test -f $$tst; then dir=; \
|
||||
else dir="$(srcdir)/"; fi; \
|
||||
if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
|
||||
all=`expr $$all + 1`; \
|
||||
case " $(XFAIL_TESTS) " in \
|
||||
*[\ \ ]$$tst[\ \ ]*) \
|
||||
xpass=`expr $$xpass + 1`; \
|
||||
failed=`expr $$failed + 1`; \
|
||||
col=$$red; res=XPASS; \
|
||||
;; \
|
||||
*) \
|
||||
col=$$grn; res=PASS; \
|
||||
;; \
|
||||
esac; \
|
||||
elif test $$? -ne 77; then \
|
||||
all=`expr $$all + 1`; \
|
||||
case " $(XFAIL_TESTS) " in \
|
||||
*[\ \ ]$$tst[\ \ ]*) \
|
||||
xfail=`expr $$xfail + 1`; \
|
||||
col=$$lgn; res=XFAIL; \
|
||||
;; \
|
||||
*) \
|
||||
failed=`expr $$failed + 1`; \
|
||||
col=$$red; res=FAIL; \
|
||||
;; \
|
||||
esac; \
|
||||
else \
|
||||
skip=`expr $$skip + 1`; \
|
||||
col=$$blu; res=SKIP; \
|
||||
fi; \
|
||||
echo "$${col}$$res$${std}: $$tst"; \
|
||||
done; \
|
||||
if test "$$all" -eq 1; then \
|
||||
tests="test"; \
|
||||
All=""; \
|
||||
else \
|
||||
tests="tests"; \
|
||||
All="All "; \
|
||||
fi; \
|
||||
if test "$$failed" -eq 0; then \
|
||||
if test "$$xfail" -eq 0; then \
|
||||
banner="$$All$$all $$tests passed"; \
|
||||
else \
|
||||
if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
|
||||
banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
|
||||
fi; \
|
||||
else \
|
||||
if test "$$xpass" -eq 0; then \
|
||||
banner="$$failed of $$all $$tests failed"; \
|
||||
else \
|
||||
if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
|
||||
banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
|
||||
fi; \
|
||||
fi; \
|
||||
dashes="$$banner"; \
|
||||
skipped=""; \
|
||||
if test "$$skip" -ne 0; then \
|
||||
if test "$$skip" -eq 1; then \
|
||||
skipped="($$skip test was not run)"; \
|
||||
else \
|
||||
skipped="($$skip tests were not run)"; \
|
||||
fi; \
|
||||
test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
|
||||
dashes="$$skipped"; \
|
||||
fi; \
|
||||
report=""; \
|
||||
if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
|
||||
report="Please report to $(PACKAGE_BUGREPORT)"; \
|
||||
test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
|
||||
dashes="$$report"; \
|
||||
fi; \
|
||||
dashes=`echo "$$dashes" | sed s/./=/g`; \
|
||||
if test "$$failed" -eq 0; then \
|
||||
echo "$$grn$$dashes"; \
|
||||
else \
|
||||
echo "$$red$$dashes"; \
|
||||
fi; \
|
||||
echo "$$banner"; \
|
||||
test -z "$$skipped" || echo "$$skipped"; \
|
||||
test -z "$$report" || echo "$$report"; \
|
||||
echo "$$dashes$$std"; \
|
||||
test "$$failed" -eq 0; \
|
||||
else :; fi
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
|
||||
$(MAKE) $(AM_MAKEFLAGS) check-TESTS
|
||||
check: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) check-am
|
||||
all-am: Makefile $(LTLIBRARIES)
|
||||
installdirs:
|
||||
install: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
||||
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
|
||||
clean-noinstLTLIBRARIES mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: all check check-am install install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
|
||||
clean-checkPROGRAMS clean-generic clean-libtool \
|
||||
clean-noinstLTLIBRARIES ctags distclean distclean-compile \
|
||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-pdf \
|
||||
install-pdf-am install-ps install-ps-am install-strip \
|
||||
installcheck installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags uninstall uninstall-am
|
||||
|
||||
|
||||
# Set ldflags
|
||||
#t_dap3a_LDFLAGS = ${top_builddir}/libsrc/libnetcdf3.la ${top_builddir}/libdispatch/libdispatch.la
|
||||
#t_dap3c_LDFLAGS = ${t_dap3a_LDFLAGS}
|
||||
|
||||
#check_PROGRAMS += test_varm3
|
||||
#TESTS += test_varm3
|
||||
#test_varm3_SOURCES = test_varm3.c stubdap3.c
|
||||
#test_varm3_LDFLAGS = ${t_dap3a_LDFLAGS}
|
||||
|
||||
# This rule are used if someone wants to rebuild t_dap3a.c
|
||||
# Otherwise never invoked, but records how to do it.
|
||||
t_dap3a.c: ${srcdir}/t_dap.c
|
||||
echo "#define NETCDF3ONLY" > t_dap3a.c
|
||||
cat t_dap.c >> t_dap3a.c
|
||||
|
||||
t_dap4a.c: t_dap.c
|
||||
cat t_dap.c >> ./t_dap4a.c
|
||||
|
||||
.dodsrc:
|
||||
echo "#DODSRC" >.dodsrc
|
||||
|
||||
makece::
|
||||
bison -v -d -t -p dce dce.y
|
||||
rm -f dcetab.c dcetab.h
|
||||
mv dce.tab.c dcetab.c
|
||||
mv dce.tab.h dcetab.h
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
@ -52,11 +52,5 @@ endif # BUILD_CDMREMOTE
|
||||
|
||||
endif #USE_NETCDF4
|
||||
|
||||
if BUILD_F77
|
||||
if ! BUILD_SEPARATE_FORTRAN
|
||||
libnetcdf_la_LIBADD += ${top_builddir}/fortran/libnetcdff.la
|
||||
endif #!BUILD_SEPARATE_FORTRAN
|
||||
endif #BUILD_F77
|
||||
|
||||
# We need at least one source file
|
||||
libnetcdf_la_SOURCES = stub.c
|
||||
|
@ -23,29 +23,24 @@
|
||||
#define LAT_LEN 121
|
||||
#define LVL_LEN 31
|
||||
#define TIME_LEN 1
|
||||
#define NDIMS1 1
|
||||
#define NDIMS4 4
|
||||
|
||||
int
|
||||
create_file(char *file_name, int fill_mode, size_t* sizehintp)
|
||||
{
|
||||
int ncid;
|
||||
int lon_dim, lat_dim, lvl_dim, time_dim;
|
||||
int time_id, zonal_wnd_id;
|
||||
int i;
|
||||
|
||||
/* rank (number of dimensions) for each variable */
|
||||
# define RANK_time 1
|
||||
# define RANK_lat 1
|
||||
# define RANK_lon 1
|
||||
# define RANK_lvl 1
|
||||
# define RANK_zonal_wnd 4
|
||||
|
||||
/* variable shapes */
|
||||
int zonal_wnd_dims[RANK_zonal_wnd];
|
||||
size_t zonal_wnd_start[RANK_zonal_wnd];
|
||||
size_t zonal_wnd_count[RANK_zonal_wnd];
|
||||
float zonal_wnd[LON_LEN*LAT_LEN*TIME_LEN];
|
||||
int ncid, time_id, zonal_wnd_id;
|
||||
int dimids[NDIMS4];
|
||||
size_t start[NDIMS4] = {0, 0, 0, 0};
|
||||
size_t count[NDIMS4] = {TIME_LEN, 1, LAT_LEN, LON_LEN};
|
||||
float zonal_wnd[LON_LEN * LAT_LEN * TIME_LEN];
|
||||
size_t default_initialsize = 0;
|
||||
double time[TIME_LEN] = {1.};
|
||||
int i;
|
||||
|
||||
/* Init data. */
|
||||
for(i = 0; i < TIME_LEN * LAT_LEN * LON_LEN; i++)
|
||||
zonal_wnd[i] = 100 + i;
|
||||
|
||||
/* To test bug on filesystem without large block size, we can get
|
||||
* the same effect by providing the desired value as sizehint to
|
||||
@ -55,39 +50,23 @@ create_file(char *file_name, int fill_mode, size_t* sizehintp)
|
||||
if (nc_set_fill(ncid, fill_mode, NULL)) ERR;
|
||||
|
||||
/* define dimensions */
|
||||
if (nc_def_dim(ncid, "lon", LON_LEN, &lon_dim)) ERR;
|
||||
if (nc_def_dim(ncid, "lat", LAT_LEN, &lat_dim)) ERR;
|
||||
if (nc_def_dim(ncid, "lvl", LVL_LEN, &lvl_dim)) ERR;
|
||||
if (nc_def_dim(ncid, "time", TIME_LEN, &time_dim)) ERR;
|
||||
if (nc_def_dim(ncid, "lon", LON_LEN, &dimids[3])) ERR;
|
||||
if (nc_def_dim(ncid, "lat", LAT_LEN, &dimids[2])) ERR;
|
||||
if (nc_def_dim(ncid, "lvl", LVL_LEN, &dimids[1])) ERR;
|
||||
if (nc_def_dim(ncid, "time", TIME_LEN, &dimids[0])) ERR;
|
||||
|
||||
/* define variables */
|
||||
if (nc_def_var(ncid, "time", NC_DOUBLE, RANK_time, &time_dim, &time_id)) ERR;
|
||||
|
||||
zonal_wnd_dims[0] = time_dim;
|
||||
zonal_wnd_dims[1] = lvl_dim;
|
||||
zonal_wnd_dims[2] = lat_dim;
|
||||
zonal_wnd_dims[3] = lon_dim;
|
||||
if (nc_def_var(ncid, "zonal_wnd", NC_FLOAT, RANK_zonal_wnd, zonal_wnd_dims, &zonal_wnd_id)) ERR;
|
||||
if (nc_def_var(ncid, "time", NC_DOUBLE, NDIMS1, &dimids[0], &time_id)) ERR;
|
||||
if (nc_def_var(ncid, "zonal_wnd", NC_FLOAT, NDIMS4, dimids, &zonal_wnd_id)) ERR;
|
||||
|
||||
if (nc_enddef (ncid)) ERR;
|
||||
if (nc_put_var_double(ncid, time_id, time)) ERR;
|
||||
|
||||
/* Bug exposed when written in reverse order. */
|
||||
for(i = LVL_LEN - 1; i>=0; i--)
|
||||
/* for(i = 0; i < LVL_LEN; i++) */
|
||||
{
|
||||
int izw;
|
||||
for(izw = 0; izw < TIME_LEN * LAT_LEN * LON_LEN; izw++) {
|
||||
zonal_wnd[izw] = 100 + i;
|
||||
}
|
||||
zonal_wnd_start[0] = 0;
|
||||
zonal_wnd_start[1] = i;
|
||||
zonal_wnd_start[2] = 0;
|
||||
zonal_wnd_start[3] = 0;
|
||||
zonal_wnd_count[0] = TIME_LEN;
|
||||
zonal_wnd_count[1] = 1;
|
||||
zonal_wnd_count[2] = LAT_LEN;
|
||||
zonal_wnd_count[3] = LON_LEN;
|
||||
if (nc_put_vara_float(ncid, zonal_wnd_id, zonal_wnd_start, zonal_wnd_count, zonal_wnd)) ERR;
|
||||
start[1] = i;
|
||||
if (nc_put_vara_float(ncid, zonal_wnd_id, start, count, zonal_wnd)) ERR;
|
||||
}
|
||||
if (nc_close(ncid)) ERR;
|
||||
return 0;
|
||||
|
@ -86,18 +86,18 @@ ref_nc_test_netcdf4.cdl ref_tst_special_atts3.cdl tst_brecs.cdl
|
||||
|
||||
# Can't run ncgen to generate ctest.c and ctest64.c on cross-compiles.
|
||||
BUILT_SOURCES = ctest.c ctest64.c
|
||||
if CROSS_COMPILING
|
||||
ctest.c:
|
||||
cp ref_ctest.c ctest.c
|
||||
|
||||
ctest64.c:
|
||||
cp ref_ctest64.c ctest64.c
|
||||
else
|
||||
if EXTRA_TESTS
|
||||
ctest.c:
|
||||
$(top_builddir)/ncgen/ncgen -lc -o ctest0.nc $(top_srcdir)/ncgen/c0.cdl > $(srcdir)/ctest.c
|
||||
|
||||
ctest64.c:
|
||||
$(top_builddir)/ncgen/ncgen -v2 -lc -o ctest0_64.nc $(top_srcdir)/ncgen/c0.cdl > $(srcdir)/ctest64.c
|
||||
else
|
||||
ctest.c:
|
||||
cp ref_ctest.c ctest.c
|
||||
|
||||
ctest64.c:
|
||||
cp ref_ctest64.c ctest64.c
|
||||
endif # CROSS_COMPILING
|
||||
|
||||
# NCGEN4 additions
|
||||
|
@ -1,24 +1,12 @@
|
||||
## This is a automake file, part of Unidata's netCDF package.
|
||||
# Copyright 2005-2006, see the COPYRIGHT file for more information.
|
||||
# Copyright 2005-2011, see the COPYRIGHT file for more information.
|
||||
|
||||
# This file builds and runs the following:
|
||||
|
||||
# The nf_test program, which tests the netCDF fortran 77 interface.
|
||||
|
||||
# The ftest program, which tests the netCDF fortran 77 V2
|
||||
# interface. (Unless V2 is disabled).
|
||||
|
||||
# Test programs ftst_vars, ftst_vars2, ftst_vars3, ftst_vars4,
|
||||
# ftst_vars5, ftst_types, ftst_types2, and ftst_groups, if netCDF-4 is
|
||||
# enabled.
|
||||
|
||||
# The tst_f90 and f90tst_vars programs, which tests the netCDF fortran
|
||||
# 90 interface. (Unless F90 API is disabled).
|
||||
# This file builds and runs the f77 and f90 tests.
|
||||
|
||||
# Put together AM_CPPFLAGS and AM_LDFLAGS.
|
||||
include $(top_srcdir)/lib_flags.am
|
||||
|
||||
LDADD =
|
||||
LDADD =
|
||||
AM_CFLAGS =
|
||||
AM_FFLAGS =
|
||||
AM_FCFLAGS =
|
||||
@ -39,16 +27,11 @@ AM_FCFLAGS += @MOD_FLAG@../f90
|
||||
|
||||
endif #BUILD_F90
|
||||
|
||||
# If building a separate fortran library, include it so the tests can
|
||||
# find it.
|
||||
|
||||
AM_CPPFLAGS += -I$(top_builddir)/liblib @EXTERN_CPPFLAGS@
|
||||
AM_FFLAGS += ${AM_CPPFLAGS}
|
||||
AM_FCFLAGS += ${AM_CPPFLAGS}
|
||||
|
||||
if BUILD_SEPARATE_FORTRAN
|
||||
LDADD += ${top_builddir}/fortran/libnetcdff.la -lm
|
||||
endif
|
||||
LDADD += ${top_builddir}/liblib/libnetcdf.la
|
||||
LDADD += @EXTERN_LDFLAGS@
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user