mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
17 lines
520 B
Makefile
17 lines
520 B
Makefile
# This is part of Unidata's netCDF package. Copyright 2005-2018, see
|
|
# the COPYRIGHT file for more information.
|
|
|
|
# This automake file generates the Makefile to build netCDF-4.
|
|
# Ed Hartnett
|
|
|
|
include $(top_srcdir)/lib_flags.am
|
|
|
|
libnetcdf4_la_CPPFLAGS = ${AM_CPPFLAGS}
|
|
|
|
# This is our output. The netCDF-4 convenience library.
|
|
noinst_LTLIBRARIES = libnetcdf4.la
|
|
libnetcdf4_la_SOURCES = nc4dispatch.c nc4attr.c nc4dim.c nc4grp.c \
|
|
nc4internal.c nc4type.c nc4var.c ncfunc.c ncindex.c nc4cache.c
|
|
|
|
EXTRA_DIST = CMakeLists.txt
|