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