]> git.saurik.com Git - cycript.git/blob - Makefile.am
Reimplement apr_pools using CYPool in libcycript.
[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 lib_LTLIBRARIES = libcycript.la
33 libcycript_la_SOURCES = Highlight.cpp Network.cpp Output.cpp Parser.cpp Replace.cpp
34 libcycript_la_LDFLAGS = -no-undefined -avoid-version -export-dynamic
35 libcycript_la_LIBADD = $(LTLIBFFI) $(LTLIBICONV) -ldl
36
37 libcycript_la_SOURCES += Cycript.tab.cc
38 libcycript_la_SOURCES += lex.cy.cpp
39
40 bin_PROGRAMS = cycript
41 cycript_SOURCES = Console.cpp Display.cpp
42 cycript_LDADD = libcycript.la $(LTLIBAPR) $(LTLIBREADLINE) $(LTLIBTERMCAP) -ldl
43
44 ldid = true
45 entitle = $(ldid) -Scycript.xml
46
47 filters = $(CY_FILTERS)
48
49 if CY_EXECUTE
50 libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
51 libcycript_la_SOURCES += Bridge.cpp Execute.cpp JavaScriptCore.cpp Library.cpp
52
53 AM_CPPFLAGS += -DCY_EXECUTE
54 filters += C
55
56 Bridge.lo: Bridge.hpp
57
58 CLEANFILES += Bridge.gperf
59 Bridge.gperf: Bridge.def Bridge.sh
60 $(srcdir)/Bridge.sh $< >$@
61
62 CLEANFILES += Bridge.hpp
63 Bridge.hpp: Bridge.gperf
64 $(GPERF) $< | $(SED) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@
65 endif
66
67 if CY_OBJECTIVEC
68 filters += ObjectiveC
69 libcycript_la_SOURCES += ObjectiveC/Output.mm ObjectiveC/Replace.cpp ObjectiveC/Library.mm
70 endif
71
72 if CY_MACH
73 libcycript_la_SOURCES += Handler.mm
74 cycript_SOURCES += Mach/Inject.cpp
75
76 AM_CPPFLAGS += -DCY_ATTACH -DCY_LIBRARY='"$(libdir)/libcycript.$(SO)"'
77
78 Mach/Inject.$(OBJEXT): Trampoline.t.hpp
79
80 CLEANFILES += Trampoline.t.lo
81 Trampoline.t.lo: Trampoline.t.cpp Trampoline.hpp Baton.hpp Standard.hpp
82 $(LTCXXCOMPILE) $(CY_ARCH) -c -o $@ $< -fno-stack-protector -fno-exceptions -O0
83
84 CLEANFILES += libTrampoline.t.la
85 libTrampoline.t.la: Trampoline.t.lo
86 $(CXXLINK) $(CY_ARCH) -rpath $(libdir) $^
87
88 CLEANFILES += Trampoline.t.hpp
89 Trampoline.t.hpp: libTrampoline.t.la trampoline.sh
90 $(srcdir)/trampoline.sh $@ .libs/libTrampoline.t.dylib Trampoline $(SED) $(LIPO) $(NM) $(OTOOL)
91 endif
92
93 CLEANFILES += Cycript.yy
94 Cycript.yy: Cycript.yy.in
95 $(srcdir)/Filter.sh <$< >$@ $(filters)
96
97 CLEANFILES += Cycript.l
98 Cycript.l: Cycript.l.in
99 $(srcdir)/Filter.sh <$< >$@ $(filters)
100
101 CLEANFILES += lex.cy.cpp
102 lex.cy.cpp: Cycript.l
103 $(FLEX) -t $< | $(SED) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@
104
105 Console.lo Execute.lo Highlight.lo Library.lo Parser.lo lex.cy.lo: Cycript.tab.hh
106
107 CLEANFILES += Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output
108 Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output: Cycript.yy
109 $(BISON) -v --report=state $<
110 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$'
111 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'