]> git.saurik.com Git - cycript.git/blame_incremental - Makefile.am
Add -Wno-dangling-else, required by clang++ -Wall.
[cycript.git] / Makefile.am
... / ...
CommitLineData
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
20SHELL = @_BASH@
21
22.DELETE_ON_ERROR:
23
24AUTOMAKE_OPTIONS = subdir-objects
25CLEANFILES =
26SUBDIRS =
27
28ACLOCAL_AMFLAGS = -I m4
29
30# XXX: do I really need -fno-common?
31AM_CPPFLAGS = -Werror -fno-common -I$(srcdir)/include -DYYDEBUG=1
32AM_CPPFLAGS += -include $(srcdir)/config.h -include $(srcdir)/unconfig.h
33
34lib_LTLIBRARIES = libcycript.la
35libcycript_la_SOURCES = Highlight.cpp Network.cpp Output.cpp Parser.cpp Replace.cpp
36libcycript_la_LDFLAGS = -no-undefined
37libcycript_la_LIBADD = $(LTLIBAPR) $(LTLIBFFI) $(LTLIBICONV) -ldl
38
39libcycript_la_SOURCES += Cycript.tab.cc
40libcycript_la_SOURCES += lex.cy.cpp
41
42bin_PROGRAMS = cycript
43cycript_SOURCES = Console.cpp Display.cpp
44cycript_LDADD = libcycript.la $(LTLIBAPR) $(LTLIBREADLINE) $(LTLIBTERMCAP) -ldl
45
46ldid = true
47entitle = $(ldid) -Scycript.xml
48
49filters = $(CY_FILTERS)
50
51if CY_EXECUTE
52libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
53libcycript_la_SOURCES += Bridge.cpp Execute.cpp JavaScriptCore.cpp Library.cpp
54
55AM_CPPFLAGS += -DCY_EXECUTE
56filters += C
57
58Bridge.lo: Bridge.hpp
59
60CLEANFILES += Bridge.gperf
61Bridge.gperf: Bridge.def Bridge.sh
62 $(srcdir)/Bridge.sh $< >$@
63
64CLEANFILES += Bridge.hpp
65Bridge.hpp: Bridge.gperf
66 $(GPERF) $< | $(SED) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@
67endif
68
69if CY_OBJECTIVEC
70filters += ObjectiveC
71libcycript_la_SOURCES += ObjectiveC/Output.mm ObjectiveC/Replace.cpp ObjectiveC/Library.mm
72endif
73
74if CY_MACH
75libcycript_la_SOURCES += Handler.mm
76cycript_SOURCES += Mach/Inject.cpp
77
78AM_CPPFLAGS += -DCY_ATTACH -DCY_LIBRARY='"$(libdir)/libcycript.$(SO)"'
79
80Mach/Inject.$(OBJEXT): Trampoline.t.hpp
81
82CLEANFILES += Trampoline.t.lo
83Trampoline.t.lo: Trampoline.t.cpp Trampoline.hpp Baton.hpp Standard.hpp
84 $(LTCXXCOMPILE) $(CY_ARCH) -c -o $@ $< -fno-stack-protector -fno-exceptions -O0
85
86CLEANFILES += libTrampoline.t.la
87libTrampoline.t.la: Trampoline.t.lo
88 $(CXXLINK) $(CY_ARCH) -rpath $(libdir) $^
89
90CLEANFILES += Trampoline.t.hpp
91Trampoline.t.hpp: libTrampoline.t.la trampoline.sh
92 $(srcdir)/trampoline.sh $@ .libs/libTrampoline.t.dylib Trampoline $(SED) $(LIPO) $(NM) $(OTOOL)
93endif
94
95CLEANFILES += Cycript.yy
96Cycript.yy: Cycript.yy.in
97 $(srcdir)/Filter.sh <$< >$@ $(filters)
98
99CLEANFILES += Cycript.l
100Cycript.l: Cycript.l.in
101 $(srcdir)/Filter.sh <$< >$@ $(filters)
102
103CLEANFILES += lex.cy.cpp
104lex.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;/' >$@
106
107Console.lo Execute.lo Highlight.lo Library.lo Parser.lo lex.cy.lo: Cycript.tab.hh
108
109CLEANFILES += Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output
110Cycript.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]* ([^)]*)$$'