From 047e4e3753c597628024847a524d44ca67fa1382 Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Fri, 17 Apr 2015 01:47:41 -0300 Subject: replaced leg-based parser with handmade parser for source files --- Makefile.am | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index b1548bc..3138d25 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,7 +14,6 @@ AM_DISTCHECK_CONFIGURE_FLAGS = \ EXTRA_DIST = \ autogen.sh \ README.md \ - src/source-grammar.leg \ src/template-grammar.leg \ $(NULL) @@ -22,7 +21,8 @@ CLEANFILES = \ $(NULL) noinst_HEADERS = \ - src/source-grammar.h \ + src/output.h \ + src/source-parser.h \ src/template-grammar.h \ src/utils/utils.h \ $(NULL) @@ -43,7 +43,8 @@ check_PROGRAMS = \ libblogc_la_SOURCES = \ - src/source-grammar.c \ + src/output.c \ + src/source-parser.c \ src/template-grammar.c \ src/utils/slist.c \ src/utils/strings.c \ @@ -92,24 +93,24 @@ endif if USE_CMOCKA check_PROGRAMS += \ - tests/check_source_grammar \ + tests/check_source_parser \ tests/check_template_grammar \ tests/check_utils \ $(NULL) -tests_check_source_grammar_SOURCES = \ - tests/check_source_grammar.c \ +tests_check_source_parser_SOURCES = \ + tests/check_source_parser.c \ $(NULL) -tests_check_source_grammar_CFLAGS = \ +tests_check_source_parser_CFLAGS = \ $(CMOCKA_CFLAGS) \ $(NULL) -tests_check_source_grammar_LDFLAGS = \ +tests_check_source_parser_LDFLAGS = \ -no-install \ $(NULL) -tests_check_source_grammar_LDADD = \ +tests_check_source_parser_LDADD = \ $(CMOCKA_LIBS) \ libblogc.la \ $(NULL) -- cgit v1.2.3-18-g5258