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/>.
22 AUTOMAKE_OPTIONS = subdir-objects
26 ACLOCAL_AMFLAGS = -I m4
28 # XXX: do I really need -fno-common?
29 AM_CPPFLAGS = -fno-common -I$(srcdir)/include -DYYDEBUG=1
30 AM_CPPFLAGS += -include config.h -include $(srcdir)/unconfig.h
32 CY_LDFLAGS = -no-undefined -avoid-version -export-dynamic
37 noinst_LTLIBRARIES += libcycript.la
39 lib_LTLIBRARIES += libcycript-any.la
40 libcycript_any_la_SOURCES = Select.cpp
41 libcycript_any_la_LDFLAGS = $(CY_LDFLAGS)
42 libcycript_any_la_LIBADD = -ldl
44 libcycript_la_SOURCES = ConvertUTF.c Highlight.cpp Network.cpp Output.cpp Parser.cpp Replace.cpp
45 libcycript_la_SOURCES += Cycript.tab.cc
46 libcycript_la_SOURCES += lex.cy.cpp
48 lib_LTLIBRARIES += libcycript-sys.la
49 libcycript_sys_la_SOURCES =
50 libcycript_sys_la_LDFLAGS = $(CY_LDFLAGS)
51 libcycript_sys_la_LIBADD = libcycript.la $(LTLIBFFI) -ldl
53 filters = $(CY_FILTERS)
56 bin_PROGRAMS = cycript
57 cycript_SOURCES = Console.cpp Display.cpp
58 cycript_LDADD = libcycript.la libcycript-sys.la $(LTLIBAPR) $(LTLIBREADLINE) $(LTLIBTERMCAP) -ldl
61 entitle = $(ldid) -S$(srcdir)/cycript.xml
65 libcycript_sys_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
66 libcycript_sys_la_SOURCES += Bridge.cpp Execute.cpp JavaScriptCore.cpp Library.cpp
67 libcycript_sys_la_LIBADD += $(LTJAVASCRIPTCORE)
69 AM_CPPFLAGS += -DCY_EXECUTE
74 CLEANFILES += Bridge.gperf
75 Bridge.gperf: Bridge.def Bridge.sh
76 $(srcdir)/Bridge.sh $< >$@
78 CLEANFILES += Bridge.hpp
79 Bridge.hpp: Bridge.gperf
80 $(GPERF) $< | $(SED) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@
85 libcycript_la_SOURCES += ObjectiveC/Output.cpp ObjectiveC/Replace.cpp ObjectiveC/Library.mm
86 libcycript_sys_la_LIBADD += $(LTOBJECTIVEC)
90 libcycript_sys_la_SOURCES += Handler.mm
93 cycript_SOURCES += Mach/Inject.cpp
95 AM_CPPFLAGS += -DCY_ATTACH
97 Mach/Inject.$(OBJEXT): Trampoline.t.hpp
99 CLEANFILES += Trampoline.t.lo
100 Trampoline.t.lo: Trampoline.t.cpp Trampoline.hpp Baton.hpp Standard.hpp
101 $(LTCXXCOMPILE) -c -o $@ $< -fno-stack-protector -fno-exceptions -O0
103 CLEANFILES += libTrampoline.t.la
104 libTrampoline.t.la: Trampoline.t.lo
105 $(CXXLINK) -rpath $(libdir) $^
107 CLEANFILES += Trampoline.t.hpp
108 Trampoline.t.hpp: libTrampoline.t.la trampoline.sh
109 $(srcdir)/trampoline.sh $@ .libs/libTrampoline.t.dylib Trampoline $(SED) $(LIPO) $(NM) $(OTOOL)
110 ! grep '## symbol stub for:' $@
114 CLEANFILES += Cycript.yy
115 Cycript.yy: Cycript.yy.in
116 $(srcdir)/Filter.sh <$< >$@ $(filters)
118 CLEANFILES += Cycript.l
119 Cycript.l: Cycript.l.in
120 $(srcdir)/Filter.sh <$< >$@ $(filters)
122 CLEANFILES += lex.cy.cpp
123 lex.cy.cpp: Cycript.l
124 $(FLEX) -t $< | $(SED) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@
126 Console.lo Execute.lo Highlight.lo Library.lo Parser.lo lex.cy.lo: Cycript.tab.hh
128 CLEANFILES += Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output
129 Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output: Cycript.yy
130 $(BISON) -v --report=state $<
131 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$'
132 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'