1 # Cycript - Optimizing JavaScript Compiler/Runtime
2 # Copyright (C) 2009-2013 Jay Freeman (saurik)
4 # GNU General Public License, Version 3 {{{
6 # Cycript is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published
8 # by the Free Software Foundation, either version 3 of the License,
9 # or (at your option) any later version.
11 # Cycript is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Cycript. If not, see <http://www.gnu.org/licenses/>.
24 AUTOMAKE_OPTIONS = subdir-objects
28 ACLOCAL_AMFLAGS = -I m4
30 # XXX: do I really need -fno-common?
31 AM_CPPFLAGS = -Werror -fno-common -I$(srcdir)/include -DYYDEBUG=1
32 AM_CPPFLAGS += -include $(srcdir)/config.h -include $(srcdir)/unconfig.h
34 lib_LTLIBRARIES = libcycript.la
35 libcycript_la_SOURCES = Highlight.cpp Network.cpp Output.cpp Parser.cpp Replace.cpp
36 libcycript_la_LDFLAGS = -no-undefined
37 libcycript_la_LIBADD = $(LTLIBAPR) $(LTLIBFFI) $(LTLIBICONV) -ldl
39 libcycript_la_SOURCES += Cycript.tab.cc
40 libcycript_la_SOURCES += lex.cy.cpp
42 bin_PROGRAMS = cycript
43 cycript_SOURCES = Console.cpp Display.cpp
44 cycript_LDADD = libcycript.la $(LTLIBAPR) $(LTLIBREADLINE) $(LTLIBTERMCAP) -ldl
47 entitle = $(ldid) -Scycript.xml
49 filters = $(CY_FILTERS)
52 libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
53 libcycript_la_SOURCES += Bridge.cpp Execute.cpp JavaScriptCore.cpp Library.cpp
55 AM_CPPFLAGS += -DCY_EXECUTE
60 CLEANFILES += Bridge.gperf
61 Bridge.gperf: Bridge.def Bridge.sh
62 $(srcdir)/Bridge.sh $< >$@
64 CLEANFILES += Bridge.hpp
65 Bridge.hpp: Bridge.gperf
66 $(GPERF) $< | $(SED) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@
71 libcycript_la_SOURCES += ObjectiveC/Output.mm ObjectiveC/Replace.cpp ObjectiveC/Library.mm
75 libcycript_la_SOURCES += Handler.mm
76 cycript_SOURCES += Mach/Inject.cpp
78 AM_CPPFLAGS += -DCY_ATTACH -DCY_LIBRARY='"$(libdir)/libcycript.$(SO)"'
80 Mach/Inject.$(OBJEXT): Trampoline.t.hpp
82 CLEANFILES += Trampoline.t.lo
83 Trampoline.t.lo: Trampoline.t.cpp Trampoline.hpp Baton.hpp Standard.hpp
84 $(LTCXXCOMPILE) $(CY_ARCH) -c -o $@ $< -fno-stack-protector -fno-exceptions -O0
86 CLEANFILES += libTrampoline.t.la
87 libTrampoline.t.la: Trampoline.t.lo
88 $(CXXLINK) $(CY_ARCH) -rpath $(libdir) $^
90 CLEANFILES += Trampoline.t.hpp
91 Trampoline.t.hpp: libTrampoline.t.la trampoline.sh
92 $(srcdir)/trampoline.sh $@ .libs/libTrampoline.t.dylib Trampoline $(SED) $(LIPO) $(NM) $(OTOOL)
95 CLEANFILES += Cycript.yy
96 Cycript.yy: Cycript.yy.in
97 $(srcdir)/Filter.sh <$< >$@ $(filters)
99 CLEANFILES += Cycript.l
100 Cycript.l: Cycript.l.in
101 $(srcdir)/Filter.sh <$< >$@ $(filters)
103 CLEANFILES += lex.cy.cpp
104 lex.cy.cpp: Cycript.l
105 $(FLEX) -t $< | $(SED) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@
107 Console.lo Execute.lo Highlight.lo Library.lo Parser.lo lex.cy.lo: Cycript.tab.hh
109 CLEANFILES += Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output
110 Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output: Cycript.yy
111 $(BISON) -v --report=state $<
112 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$'
113 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'