]> git.saurik.com Git - cycript.git/blob - Makefile.am
Update included configure to match autoconf input.
[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 SHELL = @_BASH@
21
22 .DELETE_ON_ERROR:
23
24 AUTOMAKE_OPTIONS = subdir-objects
25 CLEANFILES =
26 SUBDIRS =
27
28 ACLOCAL_AMFLAGS = -I m4
29
30 # XXX: do I really need -fno-common?
31 AM_CPPFLAGS = -Werror -fno-common -I$(srcdir)/include -DYYDEBUG=1
32
33 lib_LTLIBRARIES = libcycript.la
34 libcycript_la_SOURCES = Highlight.cpp Network.cpp Output.cpp Parser.cpp Replace.cpp
35 libcycript_la_LDFLAGS = -no-undefined $(LTLIBAPR) $(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_LDFLAGS = $(LTLIBAPR) $(LTLIBREADLINE) $(LTLIBTERMCAP) -ldl
43 cycript_LDADD = libcycript.la
44
45 ldid = true
46 entitle = $(ldid) -Scycript.xml
47
48 filters = $(CY_FILTERS)
49
50 if CY_EXECUTE
51 libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
52 libcycript_la_SOURCES += Bridge.cpp Execute.cpp JavaScriptCore.cpp Library.cpp
53
54 AM_CPPFLAGS += -DCY_EXECUTE
55 filters += C
56
57 Bridge.lo: Bridge.hpp
58
59 CLEANFILES += Bridge.gperf
60 Bridge.gperf: Bridge.def Bridge.sh
61 $(srcdir)/Bridge.sh $< >$@
62
63 CLEANFILES += Bridge.hpp
64 Bridge.hpp: Bridge.gperf
65 $(GPERF) $< | $(SED) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@
66 endif
67
68 if CY_OBJECTIVEC
69 filters += ObjectiveC
70 libcycript_la_SOURCES += ObjectiveC/Output.mm ObjectiveC/Replace.cpp ObjectiveC/Library.mm
71 endif
72
73 if CY_MACH
74 libcycript_la_SOURCES += Handler.mm
75 cycript_SOURCES += Mach/Inject.cpp
76
77 AM_CPPFLAGS += -DCY_ATTACH -DCY_LIBRARY='"$(libdir)/libcycript.$(SO)"'
78
79 Mach/Inject.$(OBJEXT): Trampoline.t.hpp
80
81 CLEANFILES += Trampoline.t.lo
82 Trampoline.t.lo: Trampoline.t.cpp Trampoline.hpp Baton.hpp Standard.hpp
83 $(LTCXXCOMPILE) $(CY_ARCH) -c -o $@ $< -fno-stack-protector -fno-exceptions -O0
84
85 CLEANFILES += libTrampoline.t.la
86 libTrampoline.t.la: Trampoline.t.lo
87 $(CXXLINK) $(CY_ARCH) -rpath $(libdir) $^
88
89 CLEANFILES += Trampoline.t.hpp
90 Trampoline.t.hpp: libTrampoline.t.la trampoline.sh
91 $(srcdir)/trampoline.sh $@ .libs/libTrampoline.t.dylib Trampoline $(SED) $(LIPO) $(NM) $(OTOOL)
92 endif
93
94 CLEANFILES += Cycript.yy
95 Cycript.yy: Cycript.yy.in
96 $(srcdir)/Filter.sh <$< >$@ $(filters)
97
98 CLEANFILES += Cycript.l
99 Cycript.l: Cycript.l.in
100 $(srcdir)/Filter.sh <$< >$@ $(filters)
101
102 CLEANFILES += lex.cy.cpp
103 lex.cy.cpp: Cycript.l
104 $(FLEX) -t $< | $(SED) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@
105
106 Console.lo Execute.lo Highlight.lo Library.lo Parser.lo lex.cy.lo: Cycript.tab.hh
107
108 CLEANFILES += Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output
109 Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output: Cycript.yy
110 $(BISON) -v --report=state $<
111 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$'
112 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'