1 |
BUILT_SOURCES = pdl_yacc.h |
2 |
DISTCLEANFILES = pdl_yacc.c pdl_yacc.h Makefile.in pdl_lex.c |
3 |
AM_YFLAGS = -d |
4 |
#AM_LFLAGS = -o $(LEX_OUTPUT_ROOT).c |
5 |
|
6 |
lib_LTLIBRARIES = libnextgen.la |
7 |
libnextgen_la_SOURCES = nextgen/ng_common.c \ |
8 |
nextgen/ng_run.c \ |
9 |
nextgen/ng_log.c \ |
10 |
plugin_manager/plugin_manager.c \ |
11 |
aos/aos.c \ |
12 |
eval_man/pdl_lex.l \ |
13 |
eval_man/pdl_yacc.y \ |
14 |
eval_man/pdl.c |
15 |
|
16 |
libnextgen_la_CPPFLAGS = -I$(top_srcdir)/include/common/ -I$(top_srcdir)/include/library/ -I$(top_srcdir)/include/ |
17 |
libnextgen_la_LIBADD = $(LEXLIB) |
18 |
|
19 |
bin_PROGRAMS = test_app |
20 |
test_app_SOURCES = app/main.c |
21 |
test_app_CPPFLAGS = -I$(top_srcdir)/include/ -I$(top_srcdir)/include/library/ -I$(top_srcdir)/include/common/ |
22 |
test_app_LDADD = libnextgen.la |
23 |
test_app_LDFLAGS = -ldl |