2010-06-03 21:24:43 +08:00
|
|
|
## This is a automake file, part of Unidata's netCDF package.
|
|
|
|
# Copyright 2005, see the COPYRIGHT file for more information.
|
|
|
|
# This file builds and runs the ncgen program.
|
|
|
|
|
2011-03-22 04:31:56 +08:00
|
|
|
# Put together AM_CPPFLAGS and AM_LDFLAGS.
|
|
|
|
include $(top_srcdir)/lib_flags.am
|
2011-05-12 03:51:11 +08:00
|
|
|
LDADD = ${top_builddir}/liblib/libnetcdf.la
|
2010-06-29 02:07:35 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
# Build ncgen from the listed sources.
|
|
|
|
bin_PROGRAMS = ncgen
|
|
|
|
|
2012-02-14 08:25:32 +08:00
|
|
|
ncgen_SOURCES=generate.c main.c cdata.c bindata.c genchar.c cvt.c data.c debug.c \
|
2011-03-22 04:31:56 +08:00
|
|
|
escapes.c genc.c genbin.c generr.c genlib.c getfill.c odom.c offsets.c \
|
2015-11-20 04:44:07 +08:00
|
|
|
semantics.c dump.c util.c bytebuffer.c list.c data.h \
|
2011-03-22 04:31:56 +08:00
|
|
|
debug.h generr.h genlib.h includes.h ncgen.h odom.h offsets.h dump.h \
|
2013-03-01 01:51:09 +08:00
|
|
|
util.h bytebuffer.h list.h genf77.c f77data.c genj.c jdata.c nc_iter.h \
|
2015-11-20 04:44:07 +08:00
|
|
|
nc_iter.c ConvertUTF.c ConvertUTF.h \
|
|
|
|
ncgeny.c ncgeny.h
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
# This is the man page.
|
|
|
|
man_MANS = ncgen.1
|
|
|
|
|
|
|
|
# These files all need to be distributed.
|
2015-11-20 04:44:07 +08:00
|
|
|
EXTRA_DIST = ncgen.y ncgen.l ncgenl.c $(man_MANS) internals.html \
|
2013-11-18 05:26:14 +08:00
|
|
|
run_tests.sh run_nc4_tests.sh c0.cdl c0_4.cdl ref_camrun.cdl \
|
2015-08-16 06:26:35 +08:00
|
|
|
ncf199.cdl CMakeLists.txt XGetopt.c c5.cdl
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
# This shell script causes ncgen to build a classic and a 64-bit
|
|
|
|
# offset file from a cdl file shipped with the distribution.
|
2012-05-24 04:27:34 +08:00
|
|
|
#if !BUILD_DLL
|
2010-06-03 21:24:43 +08:00
|
|
|
TESTS = run_tests.sh
|
|
|
|
if USE_NETCDF4
|
|
|
|
TESTS += run_nc4_tests.sh
|
2011-03-22 04:31:56 +08:00
|
|
|
endif # USE_NETCDF4
|
2012-05-24 04:27:34 +08:00
|
|
|
#endif # !BUILD_DLL
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2012-11-01 04:07:11 +08:00
|
|
|
CLEANFILES = c0.nc c0_64.nc c0_4.nc c0_4c.nc ref_camrun.c \
|
2015-08-16 06:26:35 +08:00
|
|
|
ncf199.nc c5.nc
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2015-11-20 04:44:07 +08:00
|
|
|
# These rules are used if someone wants to rebuild ncgenl.c or ncgeny.c
|
2010-06-03 21:24:43 +08:00
|
|
|
# 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.*
|
2010-08-26 03:01:07 +08:00
|
|
|
|
|
|
|
makeparser::
|
2015-11-20 04:44:07 +08:00
|
|
|
flex -L -Pncg -8 ncgen.l
|
|
|
|
rm -f ncgenl.c
|
|
|
|
sed -e s/lex.ncg.c/ncgenl.c/g <lex.ncg.c >ncgenl.c
|
2013-01-04 04:45:34 +08:00
|
|
|
bison -pncg -t -d ncgen.y
|
2015-11-20 04:44:07 +08:00
|
|
|
rm -f ncgeny.c ncgeny.h
|
|
|
|
sed -e s/ncgen.tab.c/ncgeny.c/g -e s/ncgen.tab.h/ncgeny.h/g <ncgen.tab.c >ncgeny.c
|
|
|
|
sed -e s/ncgen.tab.c/ncgeny.c/g -e s/ncgen.tab.h/ncgeny.h/g <ncgen.tab.h >ncgeny.h
|