This repository has been archived on 2020-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
gnoemoe/gnoemoe/parser/Makefile.am

35 lines
777 B
Makefile

INCLUDES = \
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
-I$(top_srcdir) \
-I$(top_srcdir)/gnoemoe \
@PACKAGE_CFLAGS@
AM_YFLAGS = -y -d
noinst_LTLIBRARIES = libparser.la
libparser_la_SOURCES = \
parser.y parser.h parsen.h \
pconfig.h \
ast.c ast.h \
functions.c functions.h \
gm-parser.c gm-parser.h \
keywords.c keywords.h \
list.c list.h \
utils.c utils.h \
numbers.c numbers.h \
storage.c storage.h \
streams.c streams.h \
sym_table.c sym_table.h \
version.c version.h \
structures.h \
tokens.h
EXTRA_DIST = keywords.gperf
keywords.c: keywords.gperf
gperf -CtT --ignore-case -k1,3,$$ keywords.gperf > keywords.c
CLEANFILES = keywords.c parser.h parser.c