]> git.saurik.com Git - cycript.git/blame_incremental - Makefile.am
Temporary hack to support older JavaScriptCore :/.
[cycript.git] / Makefile.am
... / ...
CommitLineData
1# Cycript - The Truly Universal Scripting Language
2# Copyright (C) 2009-2016 Jay Freeman (saurik)
3
4# GNU Affero General Public License, Version 3 {{{
5#
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU Affero General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU Affero General Public License for more details.
15#
16# You should have received a copy of the GNU Affero General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18# }}}
19
20.DELETE_ON_ERROR:
21
22AUTOMAKE_OPTIONS = subdir-objects
23CLEANFILES =
24SUBDIRS =
25
26ACLOCAL_AMFLAGS = -I m4
27
28AM_CPPFLAGS = -DYYDEBUG=1 -DCY_SYSTEM="\"$(CY_SYSTEM)\""
29AM_CPPFLAGS += -include config.h -include $(srcdir)/unconfig.h
30
31CY_FLAGS =
32CY_FLAGS += -fvisibility=hidden
33
34if CY_ANDROID
35CY_FLAGS += -fPIE
36endif
37
38AM_CFLAGS = $(CY_FLAGS)
39AM_CXXFLAGS = $(CY_FLAGS)
40AM_OBJCXXFLAGS = $(CY_FLAGS)
41AM_LDFLAGS = $(CY_FLAGS)
42
43if CY_ANDROID
44AM_LDFLAGS += -rdynamic -fPIE -pie
45endif
46
47AM_OBJCXXFLAGS += -fobjc-exceptions
48
49CY_LDFLAGS = -no-undefined -avoid-version -export-dynamic
50
51datdir = $(libdir)
52dat_DATA =
53
54lib_LTLIBRARIES =
55
56lib_LTLIBRARIES += libcycript.la
57libcycript_la_LDFLAGS = $(CY_LDFLAGS)
58libcycript_la_LIBADD = $(LTLIBUV) $(LTLIBFFI) $(LTLIBSQLITE3) $(LTLIBGCC) -ldl
59
60libcycript_la_SOURCES = ConvertUTF.c Decode.cpp Driver.cpp Error.cpp Highlight.cpp Library.cpp Network.cpp Output.cpp Replace.cpp Syntax.cpp
61libcycript_la_SOURCES += Parser.cpp Scanner.cpp
62
63filters =
64
65if CY_CONSOLE
66bin_PROGRAMS = cycript
67cycript_SOURCES = Console.cpp
68cycript_LDADD = libcycript.la $(LTLIBREADLINE) $(LTLIBTERMCAP) $(LTLIBGCC) $(PTHREAD_CFLAGS) -ldl
69libcycript_la_SOURCES += Complete.cpp
70
71if CY_ANDROID
72bin_PROGRAMS += cycript-pie
73cycript_pie_SOURCES = pie.c
74cycript_pie_LDFLAGS = -fno-PIE
75endif
76endif
77
78if CY_EXECUTE
79libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
80libcycript_la_SOURCES += Execute.cpp JavaScriptCore.cpp
81libcycript_la_LIBADD += $(LTJAVASCRIPTCORE)
82dat_DATA += libcycript.db
83
84AM_CPPFLAGS += -DCY_EXECUTE
85filters += C
86
87CLEANFILES += libcycript.db
88libcycript.db: Bridge.def libcycript.py
89 $(srcdir)/libcycript.py $(CY_SYSTEM) $@ $(srcdir) <$<
90
91if CY_PRELINK
92CY_LANGFLAGS = -DCY_JAVA=$(CY_JAVA) -DCY_PYTHON=$(CY_PYTHON) -DCY_OBJECTIVEC=$(CY_OBJECTIVEC)
93
94if CY_ANDROID
95CY_ANDFLAGS = -U__APPLE__ -D__ANDROID__
96else
97CY_ANDFLAGS =
98endif
99
100CLEANFILES += Analyze
101Analyze: Analyze.cpp Error.cpp Output.cpp Replace.cpp Syntax.cpp
102 $(CXX_FOR_BUILD) $(CXXFLAGS_FOR_BUILD) -std=c++11 $(LDFLAGS_FOR_BUILD) $(CY_LANGFLAGS) -I$(srcdir)/extra -o $@ $^ $(CY_LIBCLANG) -Wno-bitwise-op-parentheses -Wno-dangling-else -Wno-logical-op-parentheses
103
104CLEANFILES += Bridge.def
105Bridge.def: Analysis.cpp Analyze Bridge.old
106 ./Analyze $< $(OBJCXX) $(CPPFLAGS) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(CY_LANGFLAGS) $(CY_ANDFLAGS) >$@
107 cat $(srcdir)/Bridge.old >>$@
108else
109CLEANFILES += Bridge.def
110Bridge.def: Bridge.def.in
111 cat $< >$@
112endif
113
114#CLEANFILES += Hasher.gperf
115#Hasher.gperf: Hasher.def Hasher.sh
116# $(srcdir)/Hasher.sh <$< >$@
117
118#CLEANFILES += Hasher.hpp
119#Hasher.hpp: Hasher.gperf
120# $(GPERF) $< >$@
121endif
122
123if CY_JAVA
124filters += Java
125libcycript_la_SOURCES += Java/Execute.cpp
126dat_DATA += libcycript.jar
127
128CLEANFILES += Class
129Class/Cycript.class: Java/Cycript.java
130 rm -rf Class; mkdir Class; javac -g -Xlint:unchecked -source 1.5 -target 1.5 -d Class -sourcepath $(srcdir)/Java $<
131Class/classes.dex: Class/Cycript.class
132 cd Class; dx --dex --output=../$@ *.class
133
134CLEANFILES += libcycript.jar
135libcycript.jar: Class/classes.dex Class/Cycript.class
136 cd Class; jar cf ../$@ *
137endif
138
139if CY_RUBY
140filters += Ruby
141libcycript_la_SOURCES += Ruby/Execute.cpp
142libcycript_la_LIBADD += $(LTRUBY)
143endif
144
145if CY_PYTHON
146filters += Python
147libcycript_la_SOURCES += Python/Execute.cpp
148libcycript_la_LIBADD += $(LTPYTHON)
149endif
150
151if CY_OBJECTIVEC
152AM_CPPFLAGS += -DCY_OBJECTIVEC
153filters += ObjectiveC
154libcycript_la_SOURCES += ObjectiveC/Output.cpp ObjectiveC/Replace.cpp ObjectiveC/Library.mm
155libcycript_la_LIBADD += $(LTOBJECTIVEC)
156endif
157
158if CY_ATTACH
159libcycript_la_SOURCES += Handler.cpp
160
161if CY_CONSOLE
162cycript_SOURCES += Inject.cpp
163AM_CPPFLAGS += -DCY_ATTACH
164endif
165endif
166
167CLEANFILES += Parser.ypp
168Parser.ypp: Parser.ypp.in
169 $(srcdir)/Filter.sh $< >$@ $(filters)
170
171CLEANFILES += Scanner.lpp
172Scanner.lpp: Scanner.lpp.in UnicodeIDStart.l UnicodeIDContinue.l
173 $(srcdir)/Filter.sh $< >$@ $(filters)
174
175CLEANFILES += Scanner.cpp Scanner.output lex.backup
176Scanner.cpp: Scanner.lpp
177 $(FLEX) $(LFLAGS) -o $@ -T $< 2>Scanner.output || (grep -F '$<:' Scanner.output; false)
178 @#grep -E '^(No backing up\.|Compressed tables always back up\.)$$' lex.backup >/dev/null
179 ! grep -n '^ jam-transitions: ' lex.backup | grep -v ': EOF \[\(\]\| \\2\)'
180 ! grep -F ': warning, ' Scanner.output || true
181
182Scanner.lo: Parser.hpp IdentifierStart.h IdentifierContinue.h
183Parser.lo: Parser.hpp
184Parser.cpp: Parser.hpp
185
186CLEANFILES += Parser.cpp Parser.hpp stack.hh Parser.output
187Parser.hpp: Parser.ypp
188 $(BISON) -v --report=state -Werror -o Parser.cpp $<
189 ! grep -n '^State [0-9]* conflicts:' Parser.output
190 ! grep -n '^ *.* *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output | grep -v '$$default'
191 ! grep -n '^ *$$default *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output -B 2 | grep 'shift, and go to state [0-9]*$$'
192 ! grep -n '^ *$$default *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'
193 perl -pi -e 's/yytranslate_ \(yylex \(/(yylex_ (/g' Parser.cpp