X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/77578fdd2c1bc23b7847d03d63eb8d63d283fc16..64a505ff07b28093bb91a680f8a2c2292327e896:/Makefile.am diff --git a/Makefile.am b/Makefile.am index e67adb7..eb0c884 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,7 +41,7 @@ lib_LTLIBRARIES = lib_LTLIBRARIES += libcycript.la libcycript_la_LDFLAGS = $(CY_LDFLAGS) -libcycript_la_LIBADD = $(LTLIBFFI) $(LTLIBGCC) -ldl +libcycript_la_LIBADD = $(LTLIBUV) $(LTLIBFFI) $(LTLIBGCC) -ldl libcycript_la_SOURCES = ConvertUTF.c Decode.cpp Driver.cpp Highlight.cpp Library.cpp Network.cpp Output.cpp Replace.cpp Syntax.cpp libcycript_la_SOURCES += Parser.cpp Scanner.cpp @@ -50,7 +50,7 @@ filters = if CY_CONSOLE bin_PROGRAMS = cycript -cycript_SOURCES = Console.cpp Display.cpp +cycript_SOURCES = Console.cpp cycript_LDADD = libcycript.la $(LTLIBREADLINE) $(LTLIBTERMCAP) $(LTLIBGCC) $(PTHREAD_CFLAGS) -ldl libcycript_la_SOURCES += Complete.cpp endif @@ -106,14 +106,19 @@ Scanner.lpp: Scanner.lpp.in UnicodeIDStart.l UnicodeIDContinue.l CLEANFILES += Scanner.cpp Scanner.output lex.backup Scanner.cpp: Scanner.lpp $(FLEX) $(LFLAGS) -o $@ -T $< 2>Scanner.output || (grep -F '$<:' Scanner.output; false) - grep -E '^(No backing up\.|Compressed tables always back up\.)$$' lex.backup >/dev/null + @#grep -E '^(No backing up\.|Compressed tables always back up\.)$$' lex.backup >/dev/null + ! grep -n '^ jam-transitions: ' lex.backup | grep -v ': EOF \[\(\]\| \\2\)' ! grep -F ': warning, ' Scanner.output || true -Scanner.lo: Parser.hpp +Scanner.lo: Parser.hpp IdentifierStart.h IdentifierContinue.h +Parser.lo: Parser.hpp +Parser.cpp: Parser.hpp CLEANFILES += Parser.cpp Parser.hpp stack.hh Parser.output -Parser.cpp Parser.hpp stack.hh Parser.output: Parser.ypp +Parser.hpp: Parser.ypp $(BISON) -v --report=state -Werror -o Parser.cpp $< ! grep -n '^State [0-9]* conflicts:' Parser.output + ! grep -n '^ *.* *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output | grep -v '$$default' ! grep -n '^ *$$default *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output -B 2 | grep 'shift, and go to state [0-9]*$$' ! grep -n '^ *$$default *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$' + perl -pi -e 's/yytranslate_ \(yylex \(/(yylex_ (/g' Parser.cpp