]> git.saurik.com Git - cycript.git/blob - Makefile.am
Made lots of progress on Java bridge (checkpoint).
[cycript.git] / Makefile.am
1 # Cycript - Optimizing JavaScript Compiler/Runtime
2 # Copyright (C) 2009-2015 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
22 AUTOMAKE_OPTIONS = subdir-objects
23 CLEANFILES =
24 SUBDIRS =
25
26 ACLOCAL_AMFLAGS = -I m4
27
28 AM_CPPFLAGS = -DYYDEBUG=1 -DCY_SYSTEM="\"$(CY_SYSTEM)\""
29 AM_CPPFLAGS += -include config.h -include $(srcdir)/unconfig.h
30
31 AM_CFLAGS = -fvisibility=hidden
32 AM_CXXFLAGS = -fvisibility=hidden
33 AM_OBJCXXFLAGS = -fvisibility=hidden
34 AM_LDFLAGS = -fvisibility=hidden
35
36 AM_OBJCXXFLAGS += -fobjc-exceptions
37
38 CY_LDFLAGS = -no-undefined -avoid-version -export-dynamic
39
40 datdir = $(libdir)
41 dat_DATA =
42
43 lib_LTLIBRARIES =
44
45 lib_LTLIBRARIES += libcycript.la
46 libcycript_la_LDFLAGS = $(CY_LDFLAGS)
47 libcycript_la_LIBADD = $(LTLIBUV) $(LTLIBFFI) $(LTLIBSQLITE3) $(LTLIBGCC) -ldl
48
49 libcycript_la_SOURCES = ConvertUTF.c Decode.cpp Driver.cpp Error.cpp Highlight.cpp Library.cpp Network.cpp Output.cpp Replace.cpp Syntax.cpp
50 libcycript_la_SOURCES += Parser.cpp Scanner.cpp
51
52 filters =
53
54 if CY_CONSOLE
55 bin_PROGRAMS = cycript
56 cycript_SOURCES = Console.cpp
57 cycript_LDADD = libcycript.la $(LTLIBREADLINE) $(LTLIBTERMCAP) $(LTLIBGCC) $(PTHREAD_CFLAGS) -ldl
58 libcycript_la_SOURCES += Complete.cpp
59 endif
60
61 if CY_EXECUTE
62 libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
63 libcycript_la_SOURCES += Execute.cpp JavaScriptCore.cpp
64 libcycript_la_LIBADD += $(LTJAVASCRIPTCORE)
65 dat_DATA += libcycript.db
66
67 AM_CPPFLAGS += -DCY_EXECUTE
68 filters += C
69
70 CLEANFILES += libcycript.db
71 libcycript.db: Bridge.def libcycript.sh
72 $(srcdir)/libcycript.sh $(CY_SYSTEM) $@ $<
73
74 if CY_PRELINK
75 CLEANFILES += Analyze
76 Analyze: Analyze.cpp Error.cpp Output.cpp Replace.cpp Syntax.cpp
77 $(CXX_FOR_BUILD) $(CXXFLAGS_FOR_BUILD) -std=c++11 $(LDFLAGS_FOR_BUILD) -DCY_OBJECTIVEC=$(CY_OBJECTIVEC) -I$(srcdir)/extra -o $@ $^ $(CY_LIBCLANG) -Wno-bitwise-op-parentheses -Wno-dangling-else -Wno-logical-op-parentheses
78
79 CLEANFILES += Bridge.def
80 Bridge.def: Analysis.cpp Analyze
81 ./Analyze $< $(OBJCXX) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) >$@
82 else
83 CLEANFILES += Bridge.def
84 Bridge.def: Bridge.def.in
85 cat $< >$@
86 endif
87
88 CLEANFILES += Bridge.gperf
89 Bridge.gperf: Bridge.def Bridge.sh
90 $(srcdir)/Bridge.sh <$< >$@
91
92 CLEANFILES += Bridge.hpp
93 Bridge.hpp: Bridge.gperf
94 $(GPERF) $< >$@
95 endif
96
97 if CY_JAVA
98 filters += Java
99 libcycript_la_SOURCES += Java/Execute.cpp
100 libcycript_la_LIBADD += $(LTJAVA)
101 dat_DATA += libcycript.jar
102
103 CLEANFILES += Class
104 Class/Cycript.class: Java/Cycript.java
105 rm -rf Class; mkdir Class; javac -g -Xlint:unchecked -source 1.5 -target 1.5 -d Class -sourcepath $(srcdir)/Java $<
106 Class/classes.dex: Class/Cycript.class
107 cd Class; dx --dex --output=../$@ *.class
108
109 CLEANFILES += libcycript.jar
110 libcycript.jar: Class/classes.dex Class/Cycript.class
111 cd Class; jar cf ../$@ *
112 endif
113
114 if CY_RUBY
115 filters += Ruby
116 libcycript_la_SOURCES += Ruby/Execute.cpp
117 libcycript_la_LIBADD += $(LTRUBY)
118 endif
119
120 if CY_PYTHON
121 filters += Python
122 libcycript_la_SOURCES += Python/Execute.cpp
123 libcycript_la_LIBADD += $(LTPYTHON)
124 endif
125
126 if CY_OBJECTIVEC
127 filters += ObjectiveC
128 libcycript_la_SOURCES += ObjectiveC/Output.cpp ObjectiveC/Replace.cpp ObjectiveC/Library.mm
129 libcycript_la_LIBADD += $(LTOBJECTIVEC)
130 endif
131
132 if CY_ATTACH
133 libcycript_la_SOURCES += Handler.cpp
134
135 if CY_CONSOLE
136 cycript_SOURCES += Inject.cpp
137 AM_CPPFLAGS += -DCY_ATTACH
138 endif
139 endif
140
141 CLEANFILES += Parser.ypp
142 Parser.ypp: Parser.ypp.in
143 $(srcdir)/Filter.sh $< >$@ $(filters)
144
145 CLEANFILES += Scanner.lpp
146 Scanner.lpp: Scanner.lpp.in UnicodeIDStart.l UnicodeIDContinue.l
147 $(srcdir)/Filter.sh $< >$@ $(filters)
148
149 CLEANFILES += Scanner.cpp Scanner.output lex.backup
150 Scanner.cpp: Scanner.lpp
151 $(FLEX) $(LFLAGS) -o $@ -T $< 2>Scanner.output || (grep -F '$<:' Scanner.output; false)
152 @#grep -E '^(No backing up\.|Compressed tables always back up\.)$$' lex.backup >/dev/null
153 ! grep -n '^ jam-transitions: ' lex.backup | grep -v ': EOF \[\(\]\| \\2\)'
154 ! grep -F ': warning, ' Scanner.output || true
155
156 Scanner.lo: Parser.hpp IdentifierStart.h IdentifierContinue.h
157 Parser.lo: Parser.hpp
158 Parser.cpp: Parser.hpp
159
160 CLEANFILES += Parser.cpp Parser.hpp stack.hh Parser.output
161 Parser.hpp: Parser.ypp
162 $(BISON) -v --report=state -Werror -o Parser.cpp $<
163 ! grep -n '^State [0-9]* conflicts:' Parser.output
164 ! grep -n '^ *.* *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output | grep -v '$$default'
165 ! grep -n '^ *$$default *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output -B 2 | grep 'shift, and go to state [0-9]*$$'
166 ! grep -n '^ *$$default *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'
167 perl -pi -e 's/yytranslate_ \(yylex \(/(yylex_ (/g' Parser.cpp