1 # Cycript - The Truly Universal Scripting Language
2 # Copyright (C) 2009-2016 Jay Freeman (saurik)
4 # GNU Affero General Public License, Version 3 {{{
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.
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.
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/>.
22 AUTOMAKE_OPTIONS = subdir-objects
26 ACLOCAL_AMFLAGS = -I m4
28 AM_CPPFLAGS = -DYYDEBUG=1 -DCY_SYSTEM="\"$(CY_SYSTEM)\""
29 AM_CPPFLAGS += -include config.h -include $(srcdir)/unconfig.h
32 CY_FLAGS += -fvisibility=hidden
38 AM_CFLAGS = $(CY_FLAGS)
39 AM_CXXFLAGS = $(CY_FLAGS)
40 AM_OBJCXXFLAGS = $(CY_FLAGS)
41 AM_LDFLAGS = $(CY_FLAGS)
44 AM_LDFLAGS += -rdynamic -fPIE -pie
47 AM_OBJCXXFLAGS += -fobjc-exceptions
49 CY_LDFLAGS = -no-undefined -avoid-version -export-dynamic
56 lib_LTLIBRARIES += libcycript.la
57 libcycript_la_LDFLAGS = $(CY_LDFLAGS)
58 libcycript_la_LIBADD = $(LTLIBUV) $(LTLIBFFI) $(LTLIBSQLITE3) $(LTLIBGCC) -ldl
60 libcycript_la_SOURCES = ConvertUTF.c Decode.cpp Driver.cpp Error.cpp Highlight.cpp Library.cpp Network.cpp Output.cpp Replace.cpp Syntax.cpp
61 libcycript_la_SOURCES += Parser.cpp Scanner.cpp
66 bin_PROGRAMS = cycript
67 cycript_SOURCES = Console.cpp
68 cycript_LDADD = libcycript.la $(LTLIBREADLINE) $(LTLIBTERMCAP) $(LTLIBGCC) $(PTHREAD_CFLAGS) -ldl
69 libcycript_la_SOURCES += Complete.cpp
72 bin_PROGRAMS += cycript-pie
73 cycript_pie_SOURCES = pie.c
74 cycript_pie_LDFLAGS = -fno-PIE
79 libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
80 libcycript_la_SOURCES += Execute.cpp JavaScriptCore.cpp
81 libcycript_la_LIBADD += $(LTJAVASCRIPTCORE)
82 dat_DATA += libcycript.db
84 AM_CPPFLAGS += -DCY_EXECUTE
87 CLEANFILES += libcycript.db
88 libcycript.db: Bridge.def libcycript.py
89 $(srcdir)/libcycript.py $(CY_SYSTEM) $@ $(srcdir) <$<
92 CY_LANGFLAGS = -DCY_JAVA=$(CY_JAVA) -DCY_PYTHON=$(CY_PYTHON) -DCY_OBJECTIVEC=$(CY_OBJECTIVEC)
95 CY_ANDFLAGS = -U__APPLE__ -D__ANDROID__
100 CLEANFILES += Analyze
101 Analyze: 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
104 CLEANFILES += Bridge.def
105 Bridge.def: Analysis.cpp Analyze
106 ./Analyze $< $(OBJCXX) $(CPPFLAGS) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(CY_LANGFLAGS) $(CY_ANDFLAGS) >$@
108 CLEANFILES += Bridge.def
109 Bridge.def: Bridge.def.in
113 #CLEANFILES += Hasher.gperf
114 #Hasher.gperf: Hasher.def Hasher.sh
115 # $(srcdir)/Hasher.sh <$< >$@
117 #CLEANFILES += Hasher.hpp
118 #Hasher.hpp: Hasher.gperf
124 libcycript_la_SOURCES += Java/Execute.cpp
125 dat_DATA += libcycript.jar
128 Class/Cycript.class: Java/Cycript.java
129 rm -rf Class; mkdir Class; javac -g -Xlint:unchecked -source 1.5 -target 1.5 -d Class -sourcepath $(srcdir)/Java $<
130 Class/classes.dex: Class/Cycript.class
131 cd Class; dx --dex --output=../$@ *.class
133 CLEANFILES += libcycript.jar
134 libcycript.jar: Class/classes.dex Class/Cycript.class
135 cd Class; jar cf ../$@ *
140 libcycript_la_SOURCES += Ruby/Execute.cpp
141 libcycript_la_LIBADD += $(LTRUBY)
146 libcycript_la_SOURCES += Python/Execute.cpp
147 libcycript_la_LIBADD += $(LTPYTHON)
151 AM_CPPFLAGS += -DCY_OBJECTIVEC
152 filters += ObjectiveC
153 libcycript_la_SOURCES += ObjectiveC/Output.cpp ObjectiveC/Replace.cpp ObjectiveC/Library.mm
154 libcycript_la_LIBADD += $(LTOBJECTIVEC)
158 libcycript_la_SOURCES += Handler.cpp
161 cycript_SOURCES += Inject.cpp
162 AM_CPPFLAGS += -DCY_ATTACH
166 CLEANFILES += Parser.ypp
167 Parser.ypp: Parser.ypp.in
168 $(srcdir)/Filter.sh $< >$@ $(filters)
170 CLEANFILES += Scanner.lpp
171 Scanner.lpp: Scanner.lpp.in UnicodeIDStart.l UnicodeIDContinue.l
172 $(srcdir)/Filter.sh $< >$@ $(filters)
174 CLEANFILES += Scanner.cpp Scanner.output lex.backup
175 Scanner.cpp: Scanner.lpp
176 $(FLEX) $(LFLAGS) -o $@ -T $< 2>Scanner.output || (grep -F '$<:' Scanner.output; false)
177 @#grep -E '^(No backing up\.|Compressed tables always back up\.)$$' lex.backup >/dev/null
178 ! grep -n '^ jam-transitions: ' lex.backup | grep -v ': EOF \[\(\]\| \\2\)'
179 ! grep -F ': warning, ' Scanner.output || true
181 Scanner.lo: Parser.hpp IdentifierStart.h IdentifierContinue.h
182 Parser.lo: Parser.hpp
183 Parser.cpp: Parser.hpp
185 CLEANFILES += Parser.cpp Parser.hpp stack.hh Parser.output
186 Parser.hpp: Parser.ypp
187 $(BISON) -v --report=state -Werror -o Parser.cpp $<
188 ! grep -n '^State [0-9]* conflicts:' Parser.output
189 ! grep -n '^ *.* *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output | grep -v '$$default'
190 ! grep -n '^ *$$default *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output -B 2 | grep 'shift, and go to state [0-9]*$$'
191 ! grep -n '^ *$$default *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'
192 perl -pi -e 's/yytranslate_ \(yylex \(/(yylex_ (/g' Parser.cpp