diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-01-25 13:49:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-25 13:49:21 +0100 |
commit | d2ce19c9b5e2a707dd5620dc6bb3cb8562a06261 (patch) | |
tree | e2633fa53dfdaa08c4d4eb59bcec754225de280f /lib/Makefile.am | |
parent | Merge pull request #114 from opensourcerouting/parser-mtypes (diff) | |
parent | zebra: fpm: fix --enable-dev-build (diff) | |
download | frr-d2ce19c9b5e2a707dd5620dc6bb3cb8562a06261.tar.xz frr-d2ce19c9b5e2a707dd5620dc6bb3cb8562a06261.zip |
Merge pull request #105 from opensourcerouting/cli_merge_step_prep
Prepare for split-off cli parser "merge" step
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 5dd38ee45..ac1935d73 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -3,7 +3,7 @@ AM_CPPFLAGS = -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib AM_CFLAGS = $(WERROR) DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" -AM_YFLAGS = -d -Dapi.prefix=@BISON_OPENBRACE@cmd_yy@BISON_CLOSEBRACE@ +AM_YFLAGS = -d -Dapi.prefix=@BISON_OPENBRACE@cmd_yy@BISON_CLOSEBRACE@ @BISON_VERBOSE@ command_lex.h: command_lex.c @if test ! -f $@; then rm -f command_lex.c; else :; fi @@ -26,6 +26,7 @@ libzebra_la_SOURCES = \ imsg-buffer.c imsg.c skiplist.c \ qobj.c wheel.c \ event_counter.c \ + grammar_sandbox.c \ strlcpy.c \ strlcat.c @@ -54,7 +55,7 @@ noinst_HEADERS = \ noinst_PROGRAMS = grammar_sandbox -grammar_sandbox_SOURCES = grammar_sandbox.c +grammar_sandbox_SOURCES = grammar_sandbox_main.c grammar_sandbox_LDADD = libzebra.la EXTRA_DIST = \ |