]> git.saurik.com Git - cycript.git/blame_incremental - Makefile.am
Convert static inline functions into bridge stubs.
[cycript.git] / Makefile.am
... / ...
CommitLineData
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
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
40lib_LTLIBRARIES =
41
42lib_LTLIBRARIES += libcycript.la
43libcycript_la_LDFLAGS = $(CY_LDFLAGS)
44libcycript_la_LIBADD = $(LTLIBUV) $(LTLIBFFI) $(LTLIBSQLITE3) $(LTLIBGCC) -ldl
45
46libcycript_la_SOURCES = ConvertUTF.c Decode.cpp Driver.cpp Error.cpp Highlight.cpp Library.cpp Network.cpp Output.cpp Replace.cpp Syntax.cpp
47libcycript_la_SOURCES += Parser.cpp Scanner.cpp
48
49filters =
50
51if CY_CONSOLE
52bin_PROGRAMS = cycript
53cycript_SOURCES = Console.cpp
54cycript_LDADD = libcycript.la $(LTLIBREADLINE) $(LTLIBTERMCAP) $(LTLIBGCC) $(PTHREAD_CFLAGS) -ldl
55libcycript_la_SOURCES += Complete.cpp
56endif
57
58if CY_EXECUTE
59libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
60libcycript_la_SOURCES += Execute.cpp JavaScriptCore.cpp
61libcycript_la_LIBADD += $(LTJAVASCRIPTCORE)
62
63AM_CPPFLAGS += -DCY_EXECUTE
64filters += C
65
66datdir = $(libdir)
67dat_DATA = libcycript.db
68
69CLEANFILES += libcycript.db
70libcycript.db: Bridge.def libcycript.sh
71 $(srcdir)/libcycript.sh $(CY_SYSTEM) $@ $<
72
73if CY_PRELINK
74CLEANFILES += Analyze
75Analyze: Analyze.cpp Error.cpp Output.cpp Replace.cpp Syntax.cpp
76 $(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
77
78CLEANFILES += Bridge.def
79Bridge.def: Analysis.cpp Analyze
80 ./Analyze $< $(OBJCXX) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) >$@
81else
82CLEANFILES += Bridge.def
83Bridge.def: Bridge.def.in
84 cat $< >$@
85endif
86
87CLEANFILES += Bridge.gperf
88Bridge.gperf: Bridge.def Bridge.sh
89 $(srcdir)/Bridge.sh <$< >$@
90
91CLEANFILES += Bridge.hpp
92Bridge.hpp: Bridge.gperf
93 $(GPERF) $< >$@
94endif
95
96if CY_JAVA
97filters += Java
98libcycript_la_SOURCES += Java/Execute.cpp
99libcycript_la_LIBADD += $(LTJAVA)
100endif
101
102if CY_OBJECTIVEC
103filters += ObjectiveC
104libcycript_la_SOURCES += ObjectiveC/Output.cpp ObjectiveC/Replace.cpp ObjectiveC/Library.mm
105libcycript_la_LIBADD += $(LTOBJECTIVEC)
106endif
107
108if CY_ATTACH
109libcycript_la_SOURCES += Handler.cpp
110
111if CY_CONSOLE
112cycript_SOURCES += Inject.cpp
113AM_CPPFLAGS += -DCY_ATTACH
114endif
115endif
116
117CLEANFILES += Parser.ypp
118Parser.ypp: Parser.ypp.in
119 $(srcdir)/Filter.sh $< >$@ $(filters)
120
121CLEANFILES += Scanner.lpp
122Scanner.lpp: Scanner.lpp.in UnicodeIDStart.l UnicodeIDContinue.l
123 $(srcdir)/Filter.sh $< >$@ $(filters)
124
125CLEANFILES += Scanner.cpp Scanner.output lex.backup
126Scanner.cpp: Scanner.lpp
127 $(FLEX) $(LFLAGS) -o $@ -T $< 2>Scanner.output || (grep -F '$<:' Scanner.output; false)
128 @#grep -E '^(No backing up\.|Compressed tables always back up\.)$$' lex.backup >/dev/null
129 ! grep -n '^ jam-transitions: ' lex.backup | grep -v ': EOF \[\(\]\| \\2\)'
130 ! grep -F ': warning, ' Scanner.output || true
131
132Scanner.lo: Parser.hpp IdentifierStart.h IdentifierContinue.h
133Parser.lo: Parser.hpp
134Parser.cpp: Parser.hpp
135
136CLEANFILES += Parser.cpp Parser.hpp stack.hh Parser.output
137Parser.hpp: Parser.ypp
138 $(BISON) -v --report=state -Werror -o Parser.cpp $<
139 ! grep -n '^State [0-9]* conflicts:' Parser.output
140 ! grep -n '^ *.* *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output | grep -v '$$default'
141 ! grep -n '^ *$$default *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output -B 2 | grep 'shift, and go to state [0-9]*$$'
142 ! grep -n '^ *$$default *reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Parser.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'
143 perl -pi -e 's/yytranslate_ \(yylex \(/(yylex_ (/g' Parser.cpp