]> git.saurik.com Git - cycript.git/blame - Makefile.am
I noticed this file today: it has never been used.
[cycript.git] / Makefile.am
CommitLineData
c15969fd 1# Cycript - Optimizing JavaScript Compiler/Runtime
c1d3e52e 2# Copyright (C) 2009-2015 Jay Freeman (saurik)
c15969fd 3
f95d2598 4# GNU Affero General Public License, Version 3 {{{
c15969fd 5#
f95d2598
JF
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.
c15969fd 10#
f95d2598
JF
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
c15969fd 13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f95d2598 14# GNU Affero General Public License for more details.
c15969fd 15#
f95d2598
JF
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/>.
c15969fd
JF
18# }}}
19
a243b558
JF
20.DELETE_ON_ERROR:
21
22AUTOMAKE_OPTIONS = subdir-objects
23CLEANFILES =
24SUBDIRS =
25
26ACLOCAL_AMFLAGS = -I m4
27
a4287117 28AM_CPPFLAGS = -DYYDEBUG=1
a93f15c0 29AM_CPPFLAGS += -include config.h -include $(srcdir)/unconfig.h
bfde1b76 30
c3700dee
JF
31AM_OBJCXXFLAGS = -fobjc-exceptions
32
bfde1b76
JF
33CY_LDFLAGS = -no-undefined -avoid-version -export-dynamic
34
604ed881
JF
35lib_LTLIBRARIES =
36
d10cbac7
JF
37lib_LTLIBRARIES += libcycript.la
38libcycript_la_LDFLAGS = $(CY_LDFLAGS)
3615a2f7 39libcycript_la_LIBADD = $(LTLIBFFI) $(LTLIBGCC) -ldl
604ed881 40
9a39f705 41libcycript_la_SOURCES = ConvertUTF.c Decode.cpp Driver.cpp Highlight.cpp Library.cpp Network.cpp Output.cpp Parser.cpp Replace.cpp
d10cbac7 42libcycript_la_SOURCES += Cycript.tab.cc lex.cy.cpp
a243b558 43
6ce9ac92 44filters =
a243b558 45
002ca3d9 46if CY_CONSOLE
a243b558
JF
47bin_PROGRAMS = cycript
48cycript_SOURCES = Console.cpp Display.cpp
be2fde87 49cycript_LDADD = libcycript.la $(LTLIBREADLINE) $(LTLIBTERMCAP) $(LTLIBGCC) $(PTHREAD_CFLAGS) -ldl
002ca3d9 50endif
a243b558
JF
51
52if CY_EXECUTE
d10cbac7 53libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp
776d37ff 54libcycript_la_SOURCES += Bridge.cpp Execute.cpp JavaScriptCore.cpp
d10cbac7 55libcycript_la_LIBADD += $(LTJAVASCRIPTCORE)
a243b558
JF
56
57AM_CPPFLAGS += -DCY_EXECUTE
58filters += C
59
60Bridge.lo: Bridge.hpp
61
62CLEANFILES += Bridge.gperf
63Bridge.gperf: Bridge.def Bridge.sh
64 $(srcdir)/Bridge.sh $< >$@
65
66CLEANFILES += Bridge.hpp
67Bridge.hpp: Bridge.gperf
68 $(GPERF) $< | $(SED) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@
69endif
70
39ed1631
JF
71if CY_JAVA
72filters += Java
e17ad658 73libcycript_la_SOURCES += Java/Execute.cpp
39ed1631
JF
74libcycript_la_LIBADD += $(LTJAVA)
75endif
76
a243b558
JF
77if CY_OBJECTIVEC
78filters += ObjectiveC
a93f15c0 79libcycript_la_SOURCES += ObjectiveC/Output.cpp ObjectiveC/Replace.cpp ObjectiveC/Library.mm
d10cbac7 80libcycript_la_LIBADD += $(LTOBJECTIVEC)
a243b558
JF
81endif
82
a4287117 83if CY_ATTACH
938d0626 84libcycript_la_SOURCES += Handler.cpp
002ca3d9
JF
85
86if CY_CONSOLE
a4287117 87cycript_SOURCES += Inject.cpp
6342b70c 88AM_CPPFLAGS += -DCY_ATTACH
a243b558 89endif
002ca3d9 90endif
a243b558
JF
91
92CLEANFILES += Cycript.yy
9228a43a 93Cycript.yy: Cycript.yy.in
a243b558
JF
94 $(srcdir)/Filter.sh <$< >$@ $(filters)
95
96CLEANFILES += Cycript.l
9228a43a 97Cycript.l: Cycript.l.in
a243b558
JF
98 $(srcdir)/Filter.sh <$< >$@ $(filters)
99
100CLEANFILES += lex.cy.cpp
101lex.cy.cpp: Cycript.l
102 $(FLEX) -t $< | $(SED) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@
103
b12a9965 104Console.$(OBJEXT) Cycript.tab.lo Driver.lo Handler.lo Highlight.lo Library.lo lex.cy.lo: Cycript.tab.hh
a243b558 105
58afc6aa
JF
106CLEANFILES += Cycript.tab.cc Cycript.tab.hh stack.hh Cycript.output
107Cycript.tab.cc Cycript.tab.hh stack.hh Cycript.output: Cycript.yy
349becde 108 $(BISON) -v --report=state -Werror $<
7c354490 109 ! grep -n '^State [0-9]* conflicts:' Cycript.output
a243b558
JF
110 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$'
111 ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'