]> git.saurik.com Git - cycript.git/blame_incremental - Makefile.am
Rename Instance::Transient to Instance::Permament.
[cycript.git] / Makefile.am
... / ...
CommitLineData
1# Cycript - Optimizing JavaScript Compiler/Runtime
2# Copyright (C) 2009-2014 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 = -I$(srcdir)/include -DYYDEBUG=1
29AM_CPPFLAGS += -include config.h -include $(srcdir)/unconfig.h
30
31CY_LDFLAGS = -no-undefined -avoid-version -export-dynamic
32
33lib_LTLIBRARIES =
34
35lib_LTLIBRARIES += libcycript.la
36libcycript_la_LDFLAGS = $(CY_LDFLAGS)
37libcycript_la_LIBADD = $(LTLIBFFI) $(LTLIBGCC) -ldl
38
39libcycript_la_SOURCES = ConvertUTF.c Decode.cpp Driver.cpp Highlight.cpp Library.cpp Network.cpp Output.cpp Parser.cpp Replace.cpp
40libcycript_la_SOURCES += Cycript.tab.cc lex.cy.cpp
41
42filters = $(CY_FILTERS)
43
44if CY_CONSOLE
45bin_PROGRAMS = cycript
46cycript_SOURCES = Console.cpp Display.cpp
47cycript_LDADD = libcycript.la $(LTLIBREADLINE) $(LTLIBTERMCAP) $(LTLIBGCC) -ldl
48
49ldid = true
50entitle = $(ldid) -S$(srcdir)/cycript.xml
51endif
52
53if CY_EXECUTE
54libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
55libcycript_la_SOURCES += Bridge.cpp Execute.cpp JavaScriptCore.cpp
56libcycript_la_LIBADD += $(LTJAVASCRIPTCORE)
57
58AM_CPPFLAGS += -DCY_EXECUTE
59filters += C
60
61Bridge.lo: Bridge.hpp
62
63CLEANFILES += Bridge.gperf
64Bridge.gperf: Bridge.def Bridge.sh
65 $(srcdir)/Bridge.sh $< >$@
66
67CLEANFILES += Bridge.hpp
68Bridge.hpp: Bridge.gperf
69 $(GPERF) $< | $(SED) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@
70endif
71
72if CY_JAVA
73filters += Java
74libcycript_la_SOURCES += Java/Execute.cpp
75libcycript_la_LIBADD += $(LTJAVA)
76endif
77
78if CY_OBJECTIVEC
79filters += ObjectiveC
80libcycript_la_SOURCES += ObjectiveC/Output.cpp ObjectiveC/Replace.cpp ObjectiveC/Library.mm
81libcycript_la_LIBADD += $(LTOBJECTIVEC)
82endif
83
84if CY_MACH
85libcycript_la_SOURCES += Handler.mm
86
87if CY_CONSOLE
88cycript_SOURCES += Mach/Inject.cpp
89AM_CPPFLAGS += -DCY_ATTACH
90endif
91endif
92
93CLEANFILES += Cycript.yy
94Cycript.yy: Cycript.yy.in
95 $(srcdir)/Filter.sh <$< >$@ $(filters)
96
97CLEANFILES += Cycript.l
98Cycript.l: Cycript.l.in
99 $(srcdir)/Filter.sh <$< >$@ $(filters)
100
101CLEANFILES += lex.cy.cpp
102lex.cy.cpp: Cycript.l
103 $(FLEX) -t $< | $(SED) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@
104
105Console.$(OBJEXT) Cycript.tab.lo Driver.lo Handler.lo Highlight.lo Library.lo lex.cy.lo: Cycript.tab.hh
106
107CLEANFILES += Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output
108Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output: Cycript.yy
109 $(BISON) -v --report=state $<
110 ! grep -n '^State [0-9]* conflicts:' Cycript.output
111 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$'
112 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'