diff options
author | JSDurand <mmemmew@gmail.com> | 2022-01-21 21:53:50 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2022-01-21 21:53:50 +0800 |
commit | 53865aad225ffbe5cf3c42736e5a2095092f9fff (patch) | |
tree | 697ecbee7fa69ae8c58a0ec2f69cdf84d7cd313f /src/Makefile.am | |
parent | 5730d6c04258e192195bfbbbed76d68fd78ed458 (diff) |
temporary save point
Just to save some work.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index a708ba4..fe8be18 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,10 +1,10 @@ AM_CFLAGS = -Wall -Wextra noinst_LIBRARIES = libeps.a -libeps_a_SOURCES = grammar.c list.c util.c reader.c \ -str.c utf8.c dfa.c ht.c \ -grammar.h list.h util.h reader.h \ -str_partial.h str.h utf8.h dfa.h ht.h +libeps_a_SOURCES = grammar.c list.c util.c reader.c str.c \ +utf8.c dfa.c ht.c slr_table.c grammar.h \ +list.h util.h reader.h str_partial.h \ +str.h utf8.h dfa.h ht.h slr_table.h libeps_a_CFLAGS = $(AM_CFLAGS) --pedantic @@ -26,11 +26,11 @@ check_ht check_list_SOURCES = test/check_list.c list.c -check_grammar_SOURCES = test/check_grammar.c list.c grammar.c str.c \ -utf8.c +check_grammar_SOURCES = test/check_grammar.c list.c ht.c grammar.c \ +utf8.c str.c check_reader_SOURCES = test/check_reader.c list.c grammar.c reader.c \ -str.c utf8.c util.c +str.c utf8.c util.c ht.c check_dfa_SOURCES = test/check_dfa.c dfa.c list.c str.c utf8.c |