X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/c1d3e52e58e86c49f9d04e06ae8e0ece4b98250c..5d5d70c083c2b891eb5382df084c90b0e2d406e5:/Makefile.am diff --git a/Makefile.am b/Makefile.am index b9e7b64..2cc8b2a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -28,6 +28,13 @@ ACLOCAL_AMFLAGS = -I m4 AM_CPPFLAGS = -DYYDEBUG=1 AM_CPPFLAGS += -include config.h -include $(srcdir)/unconfig.h +AM_CFLAGS = -fvisibility=hidden +AM_CXXFLAGS = -fvisibility=hidden +AM_OBJCXXFLAGS = -fvisibility=hidden +AM_LDFLAGS = -fvisibility=hidden + +AM_OBJCXXFLAGS += -fobjc-exceptions + CY_LDFLAGS = -no-undefined -avoid-version -export-dynamic lib_LTLIBRARIES = @@ -45,6 +52,7 @@ if CY_CONSOLE bin_PROGRAMS = cycript cycript_SOURCES = Console.cpp Display.cpp cycript_LDADD = libcycript.la $(LTLIBREADLINE) $(LTLIBTERMCAP) $(LTLIBGCC) $(PTHREAD_CFLAGS) -ldl +libcycript_la_SOURCES += Complete.cpp endif if CY_EXECUTE @@ -89,21 +97,22 @@ endif CLEANFILES += Cycript.yy Cycript.yy: Cycript.yy.in - $(srcdir)/Filter.sh <$< >$@ $(filters) + $(srcdir)/Filter.sh $< >$@ $(filters) CLEANFILES += Cycript.l -Cycript.l: Cycript.l.in - $(srcdir)/Filter.sh <$< >$@ $(filters) +Cycript.l: Cycript.l.in UnicodeIDStart.l UnicodeIDContinue.l + $(srcdir)/Filter.sh $< >$@ $(filters) CLEANFILES += lex.cy.cpp lex.cy.cpp: Cycript.l - $(FLEX) -t $< | $(SED) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@ + $(FLEX) -b -t $< | $(SED) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/;s/yyg =/yyg __attribute__((__unused__)) =/' >$@ + grep -F 'No backing up.' lex.backup >/dev/null Console.$(OBJEXT) Cycript.tab.lo Driver.lo Handler.lo Highlight.lo Library.lo lex.cy.lo: Cycript.tab.hh CLEANFILES += Cycript.tab.cc Cycript.tab.hh stack.hh Cycript.output Cycript.tab.cc Cycript.tab.hh stack.hh Cycript.output: Cycript.yy - $(BISON) -v --report=state $< + $(BISON) -v --report=state -Werror $< ! grep -n '^State [0-9]* conflicts:' Cycript.output ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$' ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'