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