]> git.saurik.com Git - cycript.git/blob - Makefile.am
Automatically fatten build, detect iOS simulator.
[cycript.git] / Makefile.am
1 # Cycript - Optimizing JavaScript Compiler/Runtime
2 # Copyright (C) 2009-2013 Jay Freeman (saurik)
3
4 # GNU General Public License, Version 3 {{{
5 #
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.
10 #
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.
15 #
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/>.
18 # }}}
19
20 .DELETE_ON_ERROR:
21
22 AUTOMAKE_OPTIONS = subdir-objects
23 CLEANFILES =
24 SUBDIRS =
25
26 ACLOCAL_AMFLAGS = -I m4
27
28 # XXX: do I really need -fno-common?
29 AM_CPPFLAGS = -Werror -fno-common -I$(srcdir)/include -DYYDEBUG=1
30 AM_CPPFLAGS += -include $(srcdir)/config.h -include $(srcdir)/unconfig.h
31
32 AM_CXXFLAGS = $(CY_ARCH)
33 AM_OBJCXXFLAGS = $(CY_ARCH)
34 AM_LDFLAGS = $(CY_ARCH)
35
36 CY_LDFLAGS = -no-undefined -avoid-version -export-dynamic
37
38 lib_LTLIBRARIES = libcycript.la
39 libcycript_la_SOURCES = Highlight.cpp Network.cpp Output.cpp Parser.cpp Replace.cpp
40 libcycript_la_LDFLAGS = $(AM_LDFLAGS) $(CY_LDFLAGS)
41 libcycript_la_LIBADD = $(LTLIBFFI) $(LTLIBICONV) -ldl
42
43 libcycript_la_SOURCES += Cycript.tab.cc
44 libcycript_la_SOURCES += lex.cy.cpp
45
46 bin_PROGRAMS = cycript
47 cycript_SOURCES = Console.cpp Display.cpp
48 cycript_LDADD = libcycript.la $(LTLIBAPR) $(LTLIBREADLINE) $(LTLIBTERMCAP) -ldl
49
50 ldid = true
51 entitle = $(ldid) -Scycript.xml
52
53 filters = $(CY_FILTERS)
54
55 if CY_EXECUTE
56 libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
57 libcycript_la_SOURCES += Bridge.cpp Execute.cpp JavaScriptCore.cpp Library.cpp
58
59 AM_CPPFLAGS += -DCY_EXECUTE
60 filters += C
61
62 Bridge.lo: Bridge.hpp
63
64 CLEANFILES += Bridge.gperf
65 Bridge.gperf: Bridge.def Bridge.sh
66 $(srcdir)/Bridge.sh $< >$@
67
68 CLEANFILES += Bridge.hpp
69 Bridge.hpp: Bridge.gperf
70 $(GPERF) $< | $(SED) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@
71 endif
72
73 if CY_OBJECTIVEC
74 filters += ObjectiveC
75 libcycript_la_SOURCES += ObjectiveC/Output.mm ObjectiveC/Replace.cpp ObjectiveC/Library.mm
76 endif
77
78 if CY_MACH
79 libcycript_la_SOURCES += Handler.mm
80 cycript_SOURCES += Mach/Inject.cpp
81
82 AM_CPPFLAGS += -DCY_ATTACH
83
84 Mach/Inject.$(OBJEXT): Trampoline.t.hpp
85
86 CLEANFILES += Trampoline.t.lo
87 Trampoline.t.lo: Trampoline.t.cpp Trampoline.hpp Baton.hpp Standard.hpp
88 $(LTCXXCOMPILE) $(CY_ARCH) -c -o $@ $< -fno-stack-protector -fno-exceptions -O0
89
90 CLEANFILES += libTrampoline.t.la
91 libTrampoline.t.la: Trampoline.t.lo
92 $(CXXLINK) $(CY_ARCH) -rpath $(libdir) $^
93
94 CLEANFILES += Trampoline.t.hpp
95 Trampoline.t.hpp: libTrampoline.t.la trampoline.sh
96 $(srcdir)/trampoline.sh $@ .libs/libTrampoline.t.dylib Trampoline $(SED) $(LIPO) $(NM) $(OTOOL)
97 ! grep '## symbol stub for:' $@
98 endif
99
100 libcycript_sim_la_SHORTNAME = sim
101 if CY_IOS_SIMULATOR
102 lib_LTLIBRARIES += libcycript-sim.la
103 libcycript_sim_la_SOURCES = $(libcycript_la_SOURCES)
104 libcycript_sim_la_CPPFLAGS = $(AM_CPPFLAGS)
105
106 CY_SIM_FLAGS = -arch i386 -isysroot $(CY_IOS_SIMULATOR)
107 libcycript_sim_la_CXXFLAGS = $(CY_SIM_FLAGS)
108 libcycript_sim_la_OBJCXXFLAGS = $(CY_SIM_FLAGS)
109 libcycript_sim_la_LDFLAGS = $(CY_SIM_FLAGS) $(CY_LDFLAGS)
110
111 libcycript_sim_la_LIBADD = $(LTLIBICONV) -ldl
112
113 libcycript_sim_la_CPPFLAGS += -idirafter /usr/include
114 libcycript_sim_la_LDFLAGS += -Wl,/usr/lib/libffi.dylib
115
116 libcycript_sim_la_OBJCXXFLAGS += -fobjc-abi-version=2 -fobjc-legacy-dispatch
117 endif
118
119 CLEANFILES += Cycript.yy
120 Cycript.yy: Cycript.yy.in
121 $(srcdir)/Filter.sh <$< >$@ $(filters)
122
123 CLEANFILES += Cycript.l
124 Cycript.l: Cycript.l.in
125 $(srcdir)/Filter.sh <$< >$@ $(filters)
126
127 CLEANFILES += lex.cy.cpp
128 lex.cy.cpp: Cycript.l
129 $(FLEX) -t $< | $(SED) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@
130
131 Console.lo Execute.lo Highlight.lo Library.lo Parser.lo lex.cy.lo: Cycript.tab.hh
132
133 CLEANFILES += Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output
134 Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output: Cycript.yy
135 $(BISON) -v --report=state $<
136 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$'
137 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'