]>
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 DWT |
20 | ldflags := @LDFLAGS@ |
21 | library := @LIBS@ @LTLIBAPR@ @LTLIBICONV@ | |
e1cce270 DWT |
22 | sed := @SED@ |
23 | bison := @BISON@ | |
e9c9a47c | 24 | time := @TIME@ |
3fd51f51 | 25 | gperf := @GPERF@ |
e1cce270 | 26 | otool := @OTOOL@ |
3530897b DWT |
27 | |
28 | INSTALL := @INSTALL@ | |
29 | INSTALL_PROGRAM := @INSTALL_PROGRAM@ | |
30 | INSTALL_DATA := @INSTALL_DATA@ | |
31 | ||
32 | PACKAGE_TARNAME := @PACKAGE_TARNAME@ | |
33 | prefix := @prefix@ | |
34 | exec_prefix := @exec_prefix@ | |
35 | bindir := @bindir@ | |
36 | sbindir := @sbindir@ | |
37 | libexecdir := @libexecdir@ | |
38 | datarootdir := @datarootdir@ | |
39 | datadir := @datadir@ | |
40 | sysconfdir := @sysconfdir@ | |
41 | sharedstatedir := @sharedstatedir@ | |
42 | localstatedir := @localstatedir@ | |
43 | includedir := @includedir@ | |
44 | oldincludedir := @oldincludedir@ | |
45 | docdir := @docdir@ | |
46 | infodir := @infodir@ | |
47 | htmldir := @htmldir@ | |
48 | dvidir := @dvidir@ | |
49 | pdfdir := @pdfdir@ | |
50 | psdir := @psdir@ | |
51 | libdir := @libdir@ | |
52 | localedir := @localedir@ | |
53 | mandir := @mandir@ | |
9c60689e | 54 | |
3fd51f51 | 55 | CY_EXECUTE := @CY_EXECUTE@ |
47aaa820 | 56 | CY_OBJECTIVEC := @CY_OBJECTIVEC@ |
e1cce270 | 57 | CY_OBJECTIVEC_MACH := @CY_OBJECTIVEC_MACH@ |
3fd51f51 | 58 | |
b65019fe DWT |
59 | svn := @SVN@ |
60 | svnversion := @SVNVERSION@ | |
61 | ||
62 | ifneq ($(svnversion),) | |
63 | release := $(shell svnversion $(srcdir)) | |
64 | ||
65 | ifneq ($(release),exported) | |
66 | gnutar := @GNUTAR@ | |
67 | version := @PACKAGE_VERSION@.$(release) | |
68 | tarname := @PACKAGE_TARNAME@-$(version) | |
69 | endif | |
70 | endif | |
71 | ||
9c60689e | 72 | paths := $(foreach path,$(paths),$(wildcard $(path))) |
549f29b5 | 73 | cflags += $(foreach path,$(paths),-I$(path) -L$(path)) |
9c60689e | 74 | |
b65019fe | 75 | #svn := $(shell svnversion $(srcdir)) |
9c60689e DWT |
76 | |
77 | all: | |
78 | all := cycript | |
79 | ||
b65019fe DWT |
80 | #dpkg_architecture := $(shell which dpkg-architecture 2>/dev/null) |
81 | #ifneq ($(dpkg_architecture),) | |
82 | #arch := $(shell $(dpkg_architecture) -qDEB_HOST_ARCH 2>/dev/null) | |
83 | #endif | |
9c60689e DWT |
84 | |
85 | header := Cycript.tab.hh Parser.hpp Pooling.hpp cycript.hpp Internal.hpp Error.hpp String.hpp Exception.hpp Standard.hpp | |
86 | ||
87 | code := | |
549f29b5 DWT |
88 | code += Replace.lo Output.lo |
89 | code += Cycript.tab.lo lex.cy.lo | |
90 | code += Network.lo Parser.lo | |
91 | code += JavaScriptCore.lo Library.lo | |
9c60689e DWT |
92 | |
93 | inject := | |
94 | ||
95 | filters := #E4X | |
96 | ldid := true | |
97 | entitle := $(ldid) | |
98 | lib := lib | |
99 | dll := so | |
9c60689e DWT |
100 | depends := |
101 | ||
102 | restart ?= $(MAKE) | |
103 | uname_s ?= $(shell uname -s) | |
104 | uname_p ?= $(shell uname -p) | |
105 | ||
3fd51f51 DWT |
106 | ifeq ($(CY_EXECUTE),1) |
107 | cflags += -DCY_EXECUTE | |
108 | code += sig/ffi_type.lo sig/parse.lo sig/copy.lo | |
109 | code += Execute.lo Bridge.lo | |
110 | filters += C | |
25b7683a | 111 | header += JavaScript.hpp |
9c60689e DWT |
112 | endif |
113 | ||
549f29b5 DWT |
114 | cflags += -Wall -Werror -Wno-parentheses #-Wno-unused |
115 | cflags += -fno-common | |
9c60689e | 116 | ifneq ($(srcdir),.) |
549f29b5 | 117 | cflags += -I. |
9c60689e | 118 | endif |
549f29b5 | 119 | cflags += -I$(srcdir) -I$(srcdir)/include |
9c60689e | 120 | |
a7f2d052 | 121 | all += libcycript.la |
9c60689e | 122 | |
e1cce270 | 123 | filters += $(shell $(bison) <(echo '%code{}%%_:') -o/dev/null 2>/dev/null && echo Bison24 || echo Bison23) |
9c60689e DWT |
124 | |
125 | ifdef arch | |
e1cce270 | 126 | deb := $(shell grep ^Package: $(srcdir)/control.in | cut -d ' ' -f 2-)_$(shell grep ^Version: $(srcdir)/control.in | cut -d ' ' -f 2 | $(sed) -e 's/\#/$(svn)/')_$(arch).deb |
9c60689e DWT |
127 | |
128 | all: | |
129 | ||
130 | extra:: | |
131 | ||
132 | ifeq ($(depends)$(dll),dylib) | |
133 | control.tmp: control.in cycript $(lib)cycript.dylib | |
e1cce270 | 134 | $(sed) -e 's/&/'"$$(dpkg-query -S $$(otool -lah cycript *.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/#/$(svn)/;s/%/$(arch)/' $< >$@ |
9c60689e DWT |
135 | else |
136 | ifeq ($(depends)$(dll),so) | |
137 | control.tmp: control.in cycript $(lib)cycript.so | |
e1cce270 | 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/#/$(svn)/;s/%/$(arch)/' $< >$@ |
9c60689e DWT |
139 | else |
140 | control.tmp: control.in | |
e1cce270 | 141 | $(sed) -e 's/&/$(foreach depend,$(depends),$(depend),)/;s/,$$//;s/#/$(svn)/;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 | |
152 | mkdir -p package/usr/{bin,lib,sbin} | |
153 | $(restart) extra | |
154 | cp -pR $(lib)cycript.$(dll) package/usr/lib | |
155 | cp -pR cycript package/usr/bin | |
156 | #cp -pR cyrver package/usr/sbin | |
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 |
e1cce270 DWT |
180 | cflags += -DCY_ATTACH |
181 | inject += Mach/Inject.lo | |
182 | ||
183 | Mach/Inject.lo: Trampoline.t.hpp Baton.hpp | |
184 | ||
eed4f174 JF |
185 | %.t.hpp: %.t.cpp trampoline.sh Baton.hpp Trampoline.hpp |
186 | # DOUG: abstract "lipo" and "nm" with configure? | |
465622b1 | 187 | ./trampoline.sh $@ .libs/$*.t.o $* $(sed) $(otool) lipo nm $(libtool) --mode=compile $(cxx) -c -fno-stack-protector -fno-exceptions -I$(srcdir)/include -o $*.t.lo $< $(cflags) |
e1cce270 | 188 | endif |
47aaa820 DWT |
189 | endif |
190 | ||
9c60689e DWT |
191 | all: $(all) |
192 | ||
193 | clean:: | |
b65019fe | 194 | rm -rf *.lo *.o *.d *.t.hpp .libs */*.d */*.lo */.libs libcycript.la $(all) Struct.hpp lex.cy.c Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh cyrver Cycript.yy Cycript.l control Bridge.gperf Bridge.hpp Cycript.output |
94690cff | 195 | ifneq ($(srcdir),.) |
790e5246 | 196 | rm -rf Mach ObjectiveC sig |
94690cff | 197 | endif |
9c60689e DWT |
198 | |
199 | distclean: clean | |
790e5246 | 200 | rm -f GNUmakefile Makefile config.log config.status libtool |
9c60689e DWT |
201 | |
202 | %.yy: %.yy.in | |
203 | $(srcdir)/Filter.sh <$< >$@ $(filters) | |
204 | ||
205 | %.l: %.l.in | |
206 | $(srcdir)/Filter.sh <$< >$@ $(filters) | |
207 | ||
208 | Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.yy | |
e1cce270 | 209 | $(bison) -v --report=state $< |
9c60689e DWT |
210 | |
211 | lex.cy.c: Cycript.l | |
e1cce270 | 212 | $(flex) -t $< | $(sed) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@ |
9c60689e DWT |
213 | |
214 | #Parser.hpp: Parser.py Parser.dat | |
215 | # ./Parser.py <Parser.dat >$@ | |
216 | ||
549f29b5 DWT |
217 | Cycript.tab.lo: Cycript.tab.cc $(header) |
218 | $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $< | |
9c60689e | 219 | |
549f29b5 DWT |
220 | lex.cy.lo: lex.cy.c $(header) |
221 | $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $< | |
9c60689e | 222 | |
549f29b5 DWT |
223 | %.lo: %.cpp $(header) |
224 | $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $< | |
9c60689e | 225 | |
549f29b5 | 226 | %.lo: %.mm $(header) |
47aaa820 | 227 | $(libtool) --mode=compile $(objcxx) $(objcxxflags) $(cflags) -c -o $@ $< |
9c60689e | 228 | |
a7f2d052 | 229 | libcycript.la: $(code) |
3530897b | 230 | $(libtool) --mode=link $(cxx) $(ldflags) -o $@ $(filter %.lo,$^) $(library) $(link) -rpath $(libdir) |
9c60689e DWT |
231 | $(ldid) $@ |
232 | ||
a7f2d052 DWT |
233 | cycript: Console.lo libcycript.la $(inject) |
234 | $(libtool) --mode=link $(cxx) $(ldflags) -o $@ $(filter %.lo,$^) libcycript.la $(link) -rpath $(libdir) | |
9c60689e DWT |
235 | $(entitle) cycript |
236 | ||
237 | package: $(deb) | |
238 | ||
a7f2d052 DWT |
239 | test: cycript |
240 | if [[ -e target.cy ]]; then ./cycript -c target.cy && echo; fi | |
241 | 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 | |
242 | if [[ -e test.cy ]]; then ./cycript test.cy; fi | |
9c60689e | 243 | |
b5bd4353 | 244 | ifneq ($(gnutar),:) |
b65019fe | 245 | dist: |
ab3d214f | 246 | echo -n >> $(tarname).tar.gz |
b65019fe DWT |
247 | $(gnutar) -cC $(srcdir) -f $(tarname).tar.gz -vX <($(svn) propget svn:ignore $(srcdir)) -z --exclude-vcs --show-transformed-names --transform='s#^\.#$(tarname)#' . |
248 | endif | |
249 | ||
a7f2d052 | 250 | install: cycript libcycript.la |
af896e32 | 251 | $(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) |
a7f2d052 DWT |
252 | $(libtool) --mode=install $(INSTALL_PROGRAM) libcycript.la $(DESTDIR)$(libdir)/libcycript.la |
253 | $(libtool) --mode=install $(INSTALL_PROGRAM) cycript $(DESTDIR)$(bindir)/cycript | |
9c60689e | 254 | |
a7f2d052 DWT |
255 | uninstall: |
256 | $(libtool) --mode=uninstall rm -f $(DESTDIR)$(bindir)/cycript | |
257 | $(libtool) --mode=uninstall rm -f $(DESTDIR)$(libdir)/libcycript.la | |
258 | ||
b65019fe | 259 | .PHONY: all clean extra dist install uninstall package test control.tmp |