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