mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-11 16:40:36 +08:00
57 lines
2.1 KiB
Makefile
57 lines
2.1 KiB
Makefile
## This is a automake file, part of Unidata's netCDF package.
|
|
# Copyright 2007, see the COPYRIGHT file for more information.
|
|
|
|
# This file builds the new C++-4 interface.
|
|
|
|
# $Id: Makefile.am,v 1.18 2010/05/29 00:20:16 dmh Exp $
|
|
|
|
# Point pre-preprocessor to netcdf-4 directory (libsrc4).
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
AM_LDFLAGS = ${top_builddir}/liblib/libnetcdf.la
|
|
LDADD = $(top_builddir)/cxx4/libnetcdf_c++4.la \
|
|
$(top_builddir)/liblib/libnetcdf.la
|
|
|
|
# This is our output library.
|
|
lib_LTLIBRARIES = libnetcdf_c++4.la
|
|
|
|
# See comments in libsrc/Makefile.am about the version number.
|
|
libnetcdf_c__4_la_LDFLAGS = -version-info 1:1:0
|
|
libnetcdf_c__4_la_LIBADD = $(top_builddir)/liblib/libnetcdf.la
|
|
|
|
# These headers will be installed in the users header directory.
|
|
include_HEADERS = netcdf ncAtt.h ncCheck.h ncDim.h ncException.h \
|
|
ncGroup.h ncOpaqueType.h ncVar.h ncVlenType.h ncCompoundType.h \
|
|
ncEnumType.h ncFile.h ncGroupAtt.h ncType.h ncVarAtt.h ncByte.h \
|
|
ncChar.h ncShort.h ncInt.h ncFloat.h ncDouble.h ncUbyte.h ncUshort.h \
|
|
ncUint.h ncInt64.h ncUint64.h ncString.h
|
|
|
|
# Library source.
|
|
libnetcdf_c__4_la_SOURCES = ncAtt.cpp ncCheck.cpp ncCompoundType.cpp \
|
|
ncDim.cpp ncEnumType.cpp ncException.cpp ncFile.cpp ncGroup.cpp \
|
|
ncGroupAtt.cpp ncOpaqueType.cpp ncType.cpp ncVar.cpp ncVarAtt.cpp \
|
|
ncVlenType.cpp ncByte.cpp ncChar.cpp ncShort.cpp ncInt.cpp ncFloat.cpp \
|
|
ncDouble.cpp ncUbyte.cpp ncUshort.cpp ncUint.cpp ncInt64.cpp \
|
|
ncUint64.cpp ncString.cpp
|
|
|
|
TESTFILES = test_group$(EXEEXT) test_dim$(EXEEXT) test_att$(EXEEXT) \
|
|
test_var$(EXEEXT) test_var2$(EXEEXT) test_type$(EXEEXT)
|
|
test_group_SOURCES = test_group.cpp
|
|
test_dim_SOURCES = test_dim.cpp
|
|
test_att_SOURCES = test_att.cpp test_utilities.h
|
|
test_var_SOURCES = test_var.cpp test_utilities.h
|
|
test_var2_SOURCES = test_var2.cpp test_utilities.h
|
|
test_type_SOURCES = test_type.cpp test_utilities.h
|
|
|
|
# Build and run these tests.
|
|
check_PROGRAMS = $(TESTFILES)
|
|
TESTS = $(TESTFILES)
|
|
|
|
CLEANFILES = firstFile.cdf
|
|
|
|
# Empty file that gets time-stamped after docs are generated
|
|
doxygen_stamp: $(libnetcdf_c__4_la_SOURCES) $(include_HEADERS)
|
|
doxygen
|
|
touch doxygen_stamp
|
|
|
|
|