]> git.saurik.com Git - cycript.git/blame - Makefile.am
Support full compilation on Mac OS X with clang++.
[cycript.git] / Makefile.am
CommitLineData
c15969fd
JF
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
a243b558
JF
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
e2852502 32AM_CPPFLAGS += -include $(srcdir)/config.h -include $(srcdir)/unconfig.h
a243b558
JF
33
34lib_LTLIBRARIES = libcycript.la
35libcycript_la_SOURCES = Highlight.cpp Network.cpp Output.cpp Parser.cpp Replace.cpp
67d9df66
JF
36libcycript_la_LDFLAGS = -no-undefined
37libcycript_la_LIBADD = $(LTLIBAPR) $(LTLIBFFI) $(LTLIBICONV) -ldl
a243b558
JF
38
39libcycript_la_SOURCES += Cycript.tab.cc
40libcycript_la_SOURCES += lex.cy.cpp
41
42bin_PROGRAMS = cycript
43cycript_SOURCES = Console.cpp Display.cpp
67d9df66 44cycript_LDADD = libcycript.la $(LTLIBAPR) $(LTLIBREADLINE) $(LTLIBTERMCAP) -ldl
a243b558
JF
45
46ldid = true
47entitle = $(ldid) -Scycript.xml
48
9228a43a 49filters = $(CY_FILTERS)
a243b558
JF
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
a243b558
JF
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
9228a43a 83Trampoline.t.lo: Trampoline.t.cpp Trampoline.hpp Baton.hpp Standard.hpp
a243b558 84 $(LTCXXCOMPILE) $(CY_ARCH) -c -o $@ $< -fno-stack-protector -fno-exceptions -O0
a243b558
JF
85
86CLEANFILES += libTrampoline.t.la
9228a43a 87libTrampoline.t.la: Trampoline.t.lo
a243b558 88 $(CXXLINK) $(CY_ARCH) -rpath $(libdir) $^
a243b558
JF
89
90CLEANFILES += Trampoline.t.hpp
9228a43a
JF
91Trampoline.t.hpp: libTrampoline.t.la trampoline.sh
92 $(srcdir)/trampoline.sh $@ .libs/libTrampoline.t.dylib Trampoline $(SED) $(LIPO) $(NM) $(OTOOL)
a243b558
JF
93endif
94
95CLEANFILES += Cycript.yy
9228a43a 96Cycript.yy: Cycript.yy.in
a243b558
JF
97 $(srcdir)/Filter.sh <$< >$@ $(filters)
98
99CLEANFILES += Cycript.l
9228a43a 100Cycript.l: Cycript.l.in
a243b558
JF
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
ef6f48be 107Console.lo Execute.lo Highlight.lo Library.lo Parser.lo lex.cy.lo: Cycript.tab.hh
a243b558
JF
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]* ([^)]*)$$'