]>
Commit | Line | Data |
---|---|---|
3530897b DWT |
1 | # @configure_input@ |
2 | ||
e9c9a47c | 3 | SHELL := @_BASH@ |
9c60689e DWT |
4 | VPATH := @srcdir@ |
5 | ||
6 | ifndef PKG_TARG | |
7 | target := | |
8 | else | |
9 | target := $(PKG_TARG)- | |
10 | endif | |
11 | ||
12 | srcdir := @srcdir@ | |
13 | top_builddir := @top_builddir@ | |
14 | flex := @FLEX@ | |
15 | libtool := @LIBTOOL@ | |
16 | cxx := @CXX@ | |
17 | objcxx := @OBJCXX@ | |
aff87425 | 18 | cflags := @CPPFLAGS@ @CXXFLAGS@ -DYYDEBUG=1 $(filter -DHAVE_FFI% -DHAVE_READLINE% -DHAVE_HISTORY_H,@DEFS@) |
47aaa820 | 19 | objcxxflags := @OBJCXXFLAGS@ |
549f29b5 | 20 | ldflags := @LDFLAGS@ |
9d13f949 | 21 | ltflags := @LTFLAGS@ |
549f29b5 | 22 | library := @LIBS@ @LTLIBAPR@ @LTLIBICONV@ |
e1cce270 DWT |
23 | sed := @SED@ |
24 | bison := @BISON@ | |
e9c9a47c | 25 | time := @TIME@ |
3fd51f51 | 26 | gperf := @GPERF@ |
794e88e7 DWT |
27 | otool := @_OTOOL@ |
28 | lipo := @_LIPO@ | |
29 | nm := @_NM@ | |
3530897b DWT |
30 | |
31 | INSTALL := @INSTALL@ | |
32 | INSTALL_PROGRAM := @INSTALL_PROGRAM@ | |
33 | INSTALL_DATA := @INSTALL_DATA@ | |
34 | ||
35 | PACKAGE_TARNAME := @PACKAGE_TARNAME@ | |
36 | prefix := @prefix@ | |
37 | exec_prefix := @exec_prefix@ | |
38 | bindir := @bindir@ | |
39 | sbindir := @sbindir@ | |
40 | libexecdir := @libexecdir@ | |
41 | datarootdir := @datarootdir@ | |
42 | datadir := @datadir@ | |
43 | sysconfdir := @sysconfdir@ | |
44 | sharedstatedir := @sharedstatedir@ | |
45 | localstatedir := @localstatedir@ | |
46 | includedir := @includedir@ | |
47 | oldincludedir := @oldincludedir@ | |
48 | docdir := @docdir@ | |
49 | infodir := @infodir@ | |
50 | htmldir := @htmldir@ | |
51 | dvidir := @dvidir@ | |
52 | pdfdir := @pdfdir@ | |
53 | psdir := @psdir@ | |
54 | libdir := @libdir@ | |
55 | localedir := @localedir@ | |
56 | mandir := @mandir@ | |
9c60689e | 57 | |
3fd51f51 | 58 | CY_EXECUTE := @CY_EXECUTE@ |
47aaa820 | 59 | CY_OBJECTIVEC := @CY_OBJECTIVEC@ |
e1cce270 | 60 | CY_OBJECTIVEC_MACH := @CY_OBJECTIVEC_MACH@ |
794e88e7 | 61 | CY_ATTACH_GROUP := @CY_ATTACH_GROUP@ |
3fd51f51 | 62 | |
b65019fe DWT |
63 | svn := @SVN@ |
64 | svnversion := @SVNVERSION@ | |
65 | ||
66 | ifneq ($(svnversion),) | |
67 | release := $(shell svnversion $(srcdir)) | |
68 | ||
69 | ifneq ($(release),exported) | |
70 | gnutar := @GNUTAR@ | |
71 | version := @PACKAGE_VERSION@.$(release) | |
72 | tarname := @PACKAGE_TARNAME@-$(version) | |
73 | endif | |
74 | endif | |
75 | ||
9c60689e | 76 | paths := $(foreach path,$(paths),$(wildcard $(path))) |
549f29b5 | 77 | cflags += $(foreach path,$(paths),-I$(path) -L$(path)) |
9c60689e | 78 | |
9c60689e DWT |
79 | all: |
80 | all := cycript | |
81 | ||
b65019fe DWT |
82 | #dpkg_architecture := $(shell which dpkg-architecture 2>/dev/null) |
83 | #ifneq ($(dpkg_architecture),) | |
84 | #arch := $(shell $(dpkg_architecture) -qDEB_HOST_ARCH 2>/dev/null) | |
85 | #endif | |
9c60689e | 86 | |
da2af935 | 87 | header := Cycript.tab.hh Parser.hpp Pooling.hpp List.hpp Local.hpp cycript.hpp Internal.hpp Error.hpp String.hpp Exception.hpp Standard.hpp |
9c60689e DWT |
88 | |
89 | code := | |
549f29b5 DWT |
90 | code += Replace.lo Output.lo |
91 | code += Cycript.tab.lo lex.cy.lo | |
92 | code += Network.lo Parser.lo | |
93 | code += JavaScriptCore.lo Library.lo | |
9c60689e DWT |
94 | |
95 | inject := | |
96 | ||
97 | filters := #E4X | |
98 | ldid := true | |
8ad1528b | 99 | entitle = $(ldid) -Scycript.xml |
9c60689e | 100 | lib := lib |
f8ed1165 | 101 | dll := @SO@ |
8ad1528b | 102 | depends ?= |
9c60689e DWT |
103 | |
104 | restart ?= $(MAKE) | |
105 | uname_s ?= $(shell uname -s) | |
106 | uname_p ?= $(shell uname -p) | |
107 | ||
3fd51f51 DWT |
108 | ifeq ($(CY_EXECUTE),1) |
109 | cflags += -DCY_EXECUTE | |
110 | code += sig/ffi_type.lo sig/parse.lo sig/copy.lo | |
111 | code += Execute.lo Bridge.lo | |
112 | filters += C | |
25b7683a | 113 | header += JavaScript.hpp |
9c60689e DWT |
114 | endif |
115 | ||
549f29b5 DWT |
116 | cflags += -Wall -Werror -Wno-parentheses #-Wno-unused |
117 | cflags += -fno-common | |
9c60689e | 118 | ifneq ($(srcdir),.) |
549f29b5 | 119 | cflags += -I. |
9c60689e | 120 | endif |
549f29b5 | 121 | cflags += -I$(srcdir) -I$(srcdir)/include |
9c60689e | 122 | |
a7f2d052 | 123 | all += libcycript.la |
9c60689e | 124 | |
e1cce270 | 125 | filters += $(shell $(bison) <(echo '%code{}%%_:') -o/dev/null 2>/dev/null && echo Bison24 || echo Bison23) |
9c60689e DWT |
126 | |
127 | ifdef arch | |
8ad1528b | 128 | deb := $(shell grep ^Package: $(srcdir)/control.in | cut -d ' ' -f 2-)_$(shell grep ^Version: $(srcdir)/control.in | cut -d ' ' -f 2 | $(sed) -e 's/\#/$(version)/')_$(arch).deb |
9c60689e DWT |
129 | |
130 | all: | |
131 | ||
9c60689e | 132 | ifeq ($(depends)$(dll),dylib) |
8ad1528b JF |
133 | control.tmp: control.in .libs/cycript .libs/$(lib)cycript.dylib |
134 | $(sed) -e 's/&/'"$$(dpkg-query -S $$(otool -lah .libs/cycript .libs/*.dylib | grep dylib | grep -v ':$$' | $(sed) -e 's/^ *name //;s/ (offset [0-9]*)$$//' | sort -u) 2>/dev/null | $(sed) -e 's/:.*//; /^cycript$$/ d; s/$$/,/' | sort -u | tr '\n' ' ')"'/;s/, $$//;s/#/$(version)/;s/%/$(arch)/' $< >$@ | |
9c60689e DWT |
135 | else |
136 | ifeq ($(depends)$(dll),so) | |
8ad1528b JF |
137 | control.tmp: control.in .libs/cycript .libs/$(lib)cycript.so |
138 | $(sed) -e 's/&/'"$$(dpkg-query -S $$(ldd cycript $(lib)cycript.so | $(sed) -e '/:$$/ d; s/^[ \t]*\([^ ]* => \)\?\([^ ]*\) .*/\2/' | sort -u) 2>/dev/null | $(sed) -e 's/:.*//; /^cycript$$/ d; s/$$/,/' | sort -u | tr '\n' ' ')"'/;s/, $$//;s/#/$(version)/;s/%/$(arch)/' $< >$@ | |
9c60689e DWT |
139 | else |
140 | control.tmp: control.in | |
5930c53d | 141 | $(sed) -e 's/&/$(depends)/;s/,$$//;s/#/$(version)/;s/%/$(arch)/' $< >$@ |
9c60689e DWT |
142 | endif |
143 | endif | |
144 | ||
145 | control: control.tmp | |
146 | [[ -e control ]] && diff control control.tmp &>/dev/null || cp -pRf control.tmp control | |
147 | ||
148 | $(deb): $(all) control | |
149 | rm -rf package | |
150 | mkdir -p package/DEBIAN | |
151 | cp -pR control package/DEBIAN | |
8ad1528b | 152 | #sed -i -e '/^Depends: / s/\<mobilesubstrate\>/mobilesubstrate (>= 0.9.3072)/g' package/DEBIAN/control |
9c60689e | 153 | mkdir -p package/usr/{bin,lib,sbin} |
8ad1528b JF |
154 | cp -pR .libs/$(lib)cycript.0.$(dll) package/usr/lib |
155 | cp -pR .libs/$(lib)cycript.$(dll) package/usr/lib | |
156 | cp -pR .libs/cycript package/usr/bin | |
9c60689e DWT |
157 | dpkg-deb -b package $(deb) |
158 | endif | |
159 | ||
3fd51f51 DWT |
160 | ifeq ($(CY_EXECUTE),1) |
161 | Bridge.gperf: Bridge.def Bridge.sh | |
162 | $(srcdir)/Bridge.sh $< >$@ | |
163 | ||
164 | Bridge.hpp: Bridge.gperf | |
e1cce270 | 165 | $(gperf) $< | $(sed) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@ |
3fd51f51 DWT |
166 | |
167 | Bridge.lo: Bridge.hpp | |
168 | endif | |
169 | ||
47aaa820 DWT |
170 | ifeq ($(CY_OBJECTIVEC),1) |
171 | filters += ObjectiveC | |
172 | header += Struct.hpp ObjectiveC/Internal.hpp ObjectiveC/Syntax.hpp | |
173 | code += ObjectiveC/Output.lo ObjectiveC/Replace.lo ObjectiveC/Library.lo | |
174 | ||
175 | Struct.hpp: | |
176 | $$($(objcxx) -print-prog-name=cc1obj) -print-objc-runtime-info </dev/null >$@ | |
e1cce270 DWT |
177 | |
178 | ifeq ($(CY_OBJECTIVEC_MACH),1) | |
b112996a | 179 | code += Handler.lo |
f8ed1165 | 180 | cflags += -DCY_ATTACH -DCY_LIBRARY='"$(libdir)/libcycript.$(dll)"' |
e1cce270 DWT |
181 | inject += Mach/Inject.lo |
182 | ||
183 | Mach/Inject.lo: Trampoline.t.hpp Baton.hpp | |
184 | ||
d2a2df03 JF |
185 | %.t.lo: %.t.cpp Baton.hpp Trampoline.hpp |
186 | $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $< -fno-stack-protector -fno-exceptions | |
187 | ||
188 | %.t.hpp: %.t.lo trampoline.sh | |
8a84ecb4 | 189 | $(srcdir)/trampoline.sh $@ .libs/lib$*.t.$(dll) $* $(sed) $(otool) $(lipo) $(nm) $(libtool) --mode=link $(cxx) $(ldflags) -o lib$*.t.la $< -rpath $(libdir) -Xcompiler -nostdlib |
e1cce270 | 190 | endif |
47aaa820 DWT |
191 | endif |
192 | ||
9c60689e DWT |
193 | all: $(all) |
194 | ||
195 | clean:: | |
8ad1528b | 196 | rm -rf *.lo *.o *.d *.t.hpp .libs */*.d */*.lo */.libs lib*.la $(all) Struct.hpp lex.cy.c Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh Cycript.yy Cycript.l control Bridge.gperf Bridge.hpp Cycript.output |
94690cff | 197 | ifneq ($(srcdir),.) |
790e5246 | 198 | rm -rf Mach ObjectiveC sig |
94690cff | 199 | endif |
9c60689e DWT |
200 | |
201 | distclean: clean | |
790e5246 | 202 | rm -f GNUmakefile Makefile config.log config.status libtool |
9c60689e DWT |
203 | |
204 | %.yy: %.yy.in | |
205 | $(srcdir)/Filter.sh <$< >$@ $(filters) | |
206 | ||
207 | %.l: %.l.in | |
208 | $(srcdir)/Filter.sh <$< >$@ $(filters) | |
209 | ||
210 | Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.yy | |
e1cce270 | 211 | $(bison) -v --report=state $< |
9c60689e DWT |
212 | |
213 | lex.cy.c: Cycript.l | |
e1cce270 | 214 | $(flex) -t $< | $(sed) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@ |
9c60689e DWT |
215 | |
216 | #Parser.hpp: Parser.py Parser.dat | |
217 | # ./Parser.py <Parser.dat >$@ | |
218 | ||
549f29b5 DWT |
219 | Cycript.tab.lo: Cycript.tab.cc $(header) |
220 | $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $< | |
9c60689e | 221 | |
549f29b5 DWT |
222 | lex.cy.lo: lex.cy.c $(header) |
223 | $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $< | |
9c60689e | 224 | |
549f29b5 DWT |
225 | %.lo: %.cpp $(header) |
226 | $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $< | |
9c60689e | 227 | |
549f29b5 | 228 | %.lo: %.mm $(header) |
47aaa820 | 229 | $(libtool) --mode=compile $(objcxx) $(objcxxflags) $(cflags) -c -o $@ $< |
9c60689e | 230 | |
a7f2d052 | 231 | libcycript.la: $(code) |
9d13f949 | 232 | $(libtool) --mode=link $(cxx) $(ltflags) $(ldflags) -o $@ $(filter %.lo,$^) $(library) $(link) -rpath $(libdir) |
8ad1528b | 233 | $(ldid) .libs/$(lib)cycript.$(dll) |
9c60689e | 234 | |
a7f2d052 | 235 | cycript: Console.lo libcycript.la $(inject) |
9d13f949 | 236 | $(libtool) --mode=link $(cxx) $(ltflags) $(ldflags) -o $@ $(filter %.lo,$^) libcycript.la $(link) -rpath $(libdir) |
8ad1528b | 237 | $(entitle) .libs/cycript |
9c60689e DWT |
238 | |
239 | package: $(deb) | |
240 | ||
a7f2d052 DWT |
241 | test: cycript |
242 | if [[ -e target.cy ]]; then ./cycript -c target.cy && echo; fi | |
243 | if [[ -e jquery.js ]]; then $(time) ./cycript -c jquery.js >jquery.cyc.js; gzip -9c jquery.cyc.js >jquery.cyc.js.gz; wc -c jquery.{mam,gcc,cyc,bak,yui}.js; wc -c jquery.{cyc,gcc,bak,mam,yui}.js.gz; fi | |
244 | if [[ -e test.cy ]]; then ./cycript test.cy; fi | |
9c60689e | 245 | |
b5bd4353 | 246 | ifneq ($(gnutar),:) |
b65019fe | 247 | dist: |
ab3d214f | 248 | echo -n >> $(tarname).tar.gz |
b65019fe DWT |
249 | $(gnutar) -cC $(srcdir) -f $(tarname).tar.gz -vX <($(svn) propget svn:ignore $(srcdir)) -z --exclude-vcs --show-transformed-names --transform='s#^\.#$(tarname)#' . |
250 | endif | |
251 | ||
a7f2d052 | 252 | install: cycript libcycript.la |
af896e32 | 253 | $(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) |
a7f2d052 DWT |
254 | $(libtool) --mode=install $(INSTALL_PROGRAM) libcycript.la $(DESTDIR)$(libdir)/libcycript.la |
255 | $(libtool) --mode=install $(INSTALL_PROGRAM) cycript $(DESTDIR)$(bindir)/cycript | |
794e88e7 DWT |
256 | ifneq ($(CY_ATTACH_GROUP),) |
257 | chgrp $(CY_ATTACH_GROUP) $(DESTDIR)$(bindir)/cycript | |
258 | chmod g+s $(DESTDIR)$(bindir)/cycript | |
259 | endif | |
9c60689e | 260 | |
a7f2d052 DWT |
261 | uninstall: |
262 | $(libtool) --mode=uninstall rm -f $(DESTDIR)$(bindir)/cycript | |
263 | $(libtool) --mode=uninstall rm -f $(DESTDIR)$(libdir)/libcycript.la | |
264 | ||
8ad1528b | 265 | .PHONY: all clean dist install uninstall package test control.tmp |