| 1 | # Cycript - Optimizing JavaScript Compiler/Runtime |
| 2 | # Copyright (C) 2009-2013 Jay Freeman (saurik) |
| 3 | |
| 4 | # GNU General Public License, Version 3 {{{ |
| 5 | # |
| 6 | # Cycript is free software: you can redistribute it and/or modify |
| 7 | # it under the terms of the GNU General Public License as published |
| 8 | # by the Free Software Foundation, either version 3 of the License, |
| 9 | # or (at your option) any later version. |
| 10 | # |
| 11 | # Cycript is distributed in the hope that it will be useful, but |
| 12 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | # GNU General Public License for more details. |
| 15 | # |
| 16 | # You should have received a copy of the GNU General Public License |
| 17 | # along with Cycript. 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 = -I$(srcdir)/include -DYYDEBUG=1 |
| 29 | AM_CPPFLAGS += -include config.h -include $(srcdir)/unconfig.h |
| 30 | |
| 31 | CY_LDFLAGS = -no-undefined -avoid-version -export-dynamic |
| 32 | |
| 33 | lib_LTLIBRARIES = |
| 34 | |
| 35 | if CY_MACH |
| 36 | lib_LTLIBRARIES += libcycript-any.la |
| 37 | libcycript_any_la_SOURCES = Select.cpp |
| 38 | libcycript_any_la_LDFLAGS = $(CY_LDFLAGS) |
| 39 | libcycript_any_la_LIBADD = -ldl |
| 40 | endif |
| 41 | |
| 42 | lib_LTLIBRARIES += libcycript.la |
| 43 | libcycript_la_LDFLAGS = $(CY_LDFLAGS) |
| 44 | libcycript_la_LIBADD = $(LTLIBFFI) $(LTLIBGCC) -ldl |
| 45 | |
| 46 | libcycript_la_SOURCES = ConvertUTF.c Decode.cpp Driver.cpp Highlight.cpp Library.cpp Network.cpp Output.cpp Parser.cpp Replace.cpp |
| 47 | libcycript_la_SOURCES += Cycript.tab.cc lex.cy.cpp |
| 48 | |
| 49 | filters = $(CY_FILTERS) |
| 50 | |
| 51 | if CY_CONSOLE |
| 52 | bin_PROGRAMS = cycript |
| 53 | cycript_SOURCES = Console.cpp Display.cpp |
| 54 | cycript_LDADD = libcycript.la $(LTLIBAPR) $(LTLIBREADLINE) $(LTLIBTERMCAP) $(LTLIBGCC) -ldl |
| 55 | |
| 56 | ldid = true |
| 57 | entitle = $(ldid) -S$(srcdir)/cycript.xml |
| 58 | endif |
| 59 | |
| 60 | if CY_EXECUTE |
| 61 | libcycript_la_SOURCES += sig/ffi_type.cpp sig/parse.cpp sig/copy.cpp |
| 62 | libcycript_la_SOURCES += Bridge.cpp Execute.cpp JavaScriptCore.cpp |
| 63 | libcycript_la_LIBADD += $(LTJAVASCRIPTCORE) |
| 64 | |
| 65 | AM_CPPFLAGS += -DCY_EXECUTE |
| 66 | filters += C |
| 67 | |
| 68 | Bridge.lo: Bridge.hpp |
| 69 | |
| 70 | CLEANFILES += Bridge.gperf |
| 71 | Bridge.gperf: Bridge.def Bridge.sh |
| 72 | $(srcdir)/Bridge.sh $< >$@ |
| 73 | |
| 74 | CLEANFILES += Bridge.hpp |
| 75 | Bridge.hpp: Bridge.gperf |
| 76 | $(GPERF) $< | $(SED) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@ |
| 77 | endif |
| 78 | |
| 79 | if CY_OBJECTIVEC |
| 80 | filters += ObjectiveC |
| 81 | libcycript_la_SOURCES += ObjectiveC/Output.cpp ObjectiveC/Replace.cpp ObjectiveC/Library.mm |
| 82 | libcycript_la_LIBADD += $(LTOBJECTIVEC) |
| 83 | endif |
| 84 | |
| 85 | if CY_MACH |
| 86 | libcycript_la_SOURCES += Handler.mm |
| 87 | |
| 88 | if CY_CONSOLE |
| 89 | cycript_SOURCES += Mach/Inject.cpp |
| 90 | |
| 91 | AM_CPPFLAGS += -DCY_ATTACH |
| 92 | |
| 93 | Mach/Inject.$(OBJEXT): Trampoline.t.hpp |
| 94 | |
| 95 | CLEANFILES += Trampoline.t.lo |
| 96 | Trampoline.t.lo: Trampoline.t.cpp Trampoline.hpp Baton.hpp Standard.hpp |
| 97 | $(LTCXXCOMPILE) $(CY_ARCH) -c -o $@ $< -fno-stack-protector -O0 |
| 98 | |
| 99 | CLEANFILES += libTrampoline.t.la |
| 100 | libTrampoline.t.la: Trampoline.t.lo |
| 101 | $(CXXLINK) $(CY_ARCH) -rpath $(libdir) $^ |
| 102 | |
| 103 | CLEANFILES += Trampoline.t.hpp |
| 104 | Trampoline.t.hpp: libTrampoline.t.la trampoline.sh |
| 105 | $(srcdir)/trampoline.sh $@ .libs/libTrampoline.t.dylib Trampoline $(SED) $(LIPO) $(NM) $(OTOOL) |
| 106 | ! grep '## symbol stub for:' $@ |
| 107 | endif |
| 108 | endif |
| 109 | |
| 110 | CLEANFILES += Cycript.yy |
| 111 | Cycript.yy: Cycript.yy.in |
| 112 | $(srcdir)/Filter.sh <$< >$@ $(filters) |
| 113 | |
| 114 | CLEANFILES += Cycript.l |
| 115 | Cycript.l: Cycript.l.in |
| 116 | $(srcdir)/Filter.sh <$< >$@ $(filters) |
| 117 | |
| 118 | CLEANFILES += lex.cy.cpp |
| 119 | lex.cy.cpp: Cycript.l |
| 120 | $(FLEX) -t $< | $(SED) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@ |
| 121 | |
| 122 | Console.$(OBJEXT) Cycript.tab.lo Driver.lo Handler.lo Highlight.lo Library.lo lex.cy.lo: Cycript.tab.hh |
| 123 | |
| 124 | CLEANFILES += Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output |
| 125 | Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.output: Cycript.yy |
| 126 | $(BISON) -v --report=state $< |
| 127 | ! grep -n '^State [0-9]* conflicts:' Cycript.output |
| 128 | ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$' |
| 129 | ! grep -n '^ *$$default reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep -v '$$default' | grep 'reduce using rule [0-9]* ([^)]*)$$' |