]> git.saurik.com Git - cycript.git/blame - Makefile.am
Do not use FFI to sel_registerName for [] syntax.
[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
d10cbac7 28AM_CPPFLAGS = -I$(srcdir)/include -DYYDEBUG=1
a93f15c0 29AM_CPPFLAGS += -include config.h -include $(srcdir)/unconfig.h
bfde1b76
JF
30
31CY_LDFLAGS = -no-undefined -avoid-version -export-dynamic
32
604ed881
JF
33lib_LTLIBRARIES =
34
3370d0c0 35if CY_MACH
a93f15c0
JF
36lib_LTLIBRARIES += libcycript-any.la
37libcycript_any_la_SOURCES = Select.cpp
38libcycript_any_la_LDFLAGS = $(CY_LDFLAGS)
39libcycript_any_la_LIBADD = -ldl
3370d0c0 40endif
a93f15c0 41
d10cbac7
JF
42lib_LTLIBRARIES += libcycript.la
43libcycript_la_LDFLAGS = $(CY_LDFLAGS)
3615a2f7 44libcycript_la_LIBADD = $(LTLIBFFI) $(LTLIBGCC) -ldl
604ed881 45
9a39f705 46libcycript_la_SOURCES = ConvertUTF.c Decode.cpp Driver.cpp Highlight.cpp Library.cpp Network.cpp Output.cpp Parser.cpp Replace.cpp
d10cbac7 47libcycript_la_SOURCES += Cycript.tab.cc lex.cy.cpp
a243b558 48
a93f15c0 49filters = $(CY_FILTERS)
a243b558 50
002ca3d9 51if CY_CONSOLE
a243b558
JF
52bin_PROGRAMS = cycript
53cycript_SOURCES = Console.cpp Display.cpp
3615a2f7 54cycript_LDADD = libcycript.la $(LTLIBAPR) $(LTLIBREADLINE) $(LTLIBTERMCAP) $(LTLIBGCC) -ldl
a243b558
JF
55
56ldid = true
a93f15c0 57entitle = $(ldid) -S$(srcdir)/cycript.xml
002ca3d9 58endif
a243b558
JF
59
60if CY_EXECUTE
d10cbac7 61libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
776d37ff 62libcycript_la_SOURCES += Bridge.cpp Execute.cpp JavaScriptCore.cpp
d10cbac7 63libcycript_la_LIBADD += $(LTJAVASCRIPTCORE)
a243b558
JF
64
65AM_CPPFLAGS += -DCY_EXECUTE
66filters += C
67
68Bridge.lo: Bridge.hpp
69
70CLEANFILES += Bridge.gperf
71Bridge.gperf: Bridge.def Bridge.sh
72 $(srcdir)/Bridge.sh $< >$@
73
74CLEANFILES += Bridge.hpp
75Bridge.hpp: Bridge.gperf
76 $(GPERF) $< | $(SED) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@
77endif
78
79if CY_OBJECTIVEC
80filters += ObjectiveC
a93f15c0 81libcycript_la_SOURCES += ObjectiveC/Output.cpp ObjectiveC/Replace.cpp ObjectiveC/Library.mm
d10cbac7 82libcycript_la_LIBADD += $(LTOBJECTIVEC)
a243b558
JF
83endif
84
85if CY_MACH
d10cbac7 86libcycript_la_SOURCES += Handler.mm
002ca3d9
JF
87
88if CY_CONSOLE
a243b558
JF
89cycript_SOURCES += Mach/Inject.cpp
90
6342b70c 91AM_CPPFLAGS += -DCY_ATTACH
a243b558
JF
92
93Mach/Inject.$(OBJEXT): Trampoline.t.hpp
94
95CLEANFILES += Trampoline.t.lo
9228a43a 96Trampoline.t.lo: Trampoline.t.cpp Trampoline.hpp Baton.hpp Standard.hpp
abc804fa 97 $(LTCXXCOMPILE) $(CY_ARCH) -c -o $@ $< -fno-stack-protector -O0
a243b558
JF
98
99CLEANFILES += libTrampoline.t.la
9228a43a 100libTrampoline.t.la: Trampoline.t.lo
abc804fa 101 $(CXXLINK) $(CY_ARCH) -rpath $(libdir) $^
a243b558
JF
102
103CLEANFILES += Trampoline.t.hpp
9228a43a
JF
104Trampoline.t.hpp: libTrampoline.t.la trampoline.sh
105 $(srcdir)/trampoline.sh $@ .libs/libTrampoline.t.dylib Trampoline $(SED) $(LIPO) $(NM) $(OTOOL)
11c36310 106 ! grep '## symbol stub for:' $@
a243b558 107endif
002ca3d9 108endif
a243b558
JF
109
110CLEANFILES += Cycript.yy
9228a43a 111Cycript.yy: Cycript.yy.in
a243b558
JF
112 $(srcdir)/Filter.sh <$< >$@ $(filters)
113
114CLEANFILES += Cycript.l
9228a43a 115Cycript.l: Cycript.l.in
a243b558
JF
116 $(srcdir)/Filter.sh <$< >$@ $(filters)
117
118CLEANFILES += lex.cy.cpp
119lex.cy.cpp: Cycript.l
120 $(FLEX) -t $< | $(SED) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@
121
b12a9965 122Console.$(OBJEXT) Cycript.tab.lo Driver.lo Handler.lo Highlight.lo Library.lo lex.cy.lo: Cycript.tab.hh
a243b558
JF
123
124CLEANFILES += Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output
125Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output: Cycript.yy
126 $(BISON) -v --report=state $<
7c354490 127 ! grep -n '^State [0-9]* conflicts:' Cycript.output
a243b558
JF
128 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$'
129 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'