]>
Commit | Line | Data |
---|---|---|
1 | # @configure_input@ | |
2 | ||
3 | SHELL := @_BASH@ | |
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@ | |
18 | cflags := @CPPFLAGS@ @CXXFLAGS@ -DYYDEBUG=1 $(filter -DHAVE_FFI% -DHAVE_READLINE% -DHAVE_HISTORY_H,@DEFS@) | |
19 | objcxxflags := @OBJCXXFLAGS@ | |
20 | ldflags := @LDFLAGS@ | |
21 | ltflags := @LTFLAGS@ | |
22 | library := @LIBS@ @LTLIBAPR@ @LTLIBICONV@ | |
23 | sed := @SED@ | |
24 | bison := @BISON@ | |
25 | time := @TIME@ | |
26 | gperf := @GPERF@ | |
27 | otool := @_OTOOL@ | |
28 | lipo := @_LIPO@ | |
29 | nm := @_NM@ | |
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@ | |
57 | ||
58 | CY_EXECUTE := @CY_EXECUTE@ | |
59 | CY_OBJECTIVEC := @CY_OBJECTIVEC@ | |
60 | CY_OBJECTIVEC_MACH := @CY_OBJECTIVEC_MACH@ | |
61 | CY_ATTACH_GROUP := @CY_ATTACH_GROUP@ | |
62 | ||
63 | git := @GIT@ | |
64 | ||
65 | ifneq ($(git),) | |
66 | version := $(shell $(git) describe --always --tags --dirty="+" --match="v*" | $(sed) -e 's@-\([^-]*\)-\([^-]*\)$$@+\1.\2@;s@^v@@') | |
67 | else | |
68 | version := @PACKAGE_VERSION@ | |
69 | endif | |
70 | ||
71 | paths := $(foreach path,$(paths),$(wildcard $(path))) | |
72 | cflags += $(foreach path,$(paths),-I$(path) -L$(path)) | |
73 | ||
74 | all: | |
75 | all := cycript | |
76 | ||
77 | #dpkg_architecture := $(shell which dpkg-architecture 2>/dev/null) | |
78 | #ifneq ($(dpkg_architecture),) | |
79 | #arch := $(shell $(dpkg_architecture) -qDEB_HOST_ARCH 2>/dev/null) | |
80 | #endif | |
81 | ||
82 | header := Cycript.tab.hh Parser.hpp Pooling.hpp List.hpp Local.hpp cycript.hpp Internal.hpp Error.hpp String.hpp Exception.hpp Standard.hpp | |
83 | ||
84 | code := | |
85 | code += Replace.lo Output.lo | |
86 | code += Highlight.lo Display.lo | |
87 | code += Cycript.tab.lo lex.cy.lo | |
88 | code += Network.lo Parser.lo | |
89 | code += JavaScriptCore.lo Library.lo | |
90 | ||
91 | inject := | |
92 | ||
93 | filters := #E4X | |
94 | ldid := true | |
95 | entitle = $(ldid) -Scycript.xml | |
96 | lib := lib | |
97 | dll := @SO@ | |
98 | depends ?= | |
99 | ||
100 | restart ?= $(MAKE) | |
101 | uname_s ?= $(shell uname -s) | |
102 | uname_p ?= $(shell uname -p) | |
103 | ||
104 | ifeq ($(CY_EXECUTE),1) | |
105 | cflags += -DCY_EXECUTE | |
106 | code += sig/ffi_type.lo sig/parse.lo sig/copy.lo | |
107 | code += Execute.lo Bridge.lo | |
108 | filters += C | |
109 | header += JavaScript.hpp | |
110 | endif | |
111 | ||
112 | cflags += -Wall -Werror -Wno-parentheses #-Wno-unused | |
113 | cflags += -fno-common | |
114 | ifneq ($(srcdir),.) | |
115 | cflags += -I. | |
116 | endif | |
117 | cflags += -I$(srcdir) -I$(srcdir)/include | |
118 | ||
119 | all += libcycript.la | |
120 | ||
121 | filters += $(shell $(bison) <(echo '%code{}%%_:') -o/dev/null 2>/dev/null && echo Bison24 || echo Bison23) | |
122 | ||
123 | ifdef arch | |
124 | 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 | |
125 | ||
126 | all: | |
127 | ||
128 | ifeq ($(depends)$(dll),dylib) | |
129 | control.tmp: control.in .libs/cycript .libs/$(lib)cycript.dylib | |
130 | $(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)/' $< >$@ | |
131 | else | |
132 | ifeq ($(depends)$(dll),so) | |
133 | control.tmp: control.in .libs/cycript .libs/$(lib)cycript.so | |
134 | $(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)/' $< >$@ | |
135 | else | |
136 | control.tmp: control.in | |
137 | $(sed) -e 's/&/$(depends)/;s/,$$//;s/#/$(version)/;s/%/$(arch)/' $< >$@ | |
138 | endif | |
139 | endif | |
140 | ||
141 | control: control.tmp | |
142 | [[ -e control ]] && diff control control.tmp &>/dev/null || cp -pRf control.tmp control | |
143 | ||
144 | $(deb): $(all) control | |
145 | rm -rf package | |
146 | mkdir -p package/DEBIAN | |
147 | cp -pR control package/DEBIAN | |
148 | mkdir -p package/usr/{bin,lib,sbin} | |
149 | cp -pR .libs/$(lib)cycript.0.$(dll) package/usr/lib | |
150 | cp -pR .libs/$(lib)cycript.$(dll) package/usr/lib | |
151 | cp -pR .libs/cycript package/usr/bin | |
152 | dpkg-deb -b package $(deb) | |
153 | endif | |
154 | ||
155 | ifeq ($(CY_EXECUTE),1) | |
156 | Bridge.gperf: Bridge.def Bridge.sh | |
157 | $(srcdir)/Bridge.sh $< >$@ | |
158 | ||
159 | Bridge.hpp: Bridge.gperf | |
160 | $(gperf) $< | $(sed) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@ | |
161 | ||
162 | Bridge.lo: Bridge.hpp | |
163 | endif | |
164 | ||
165 | ifeq ($(CY_OBJECTIVEC),1) | |
166 | filters += ObjectiveC | |
167 | header += Struct.hpp ObjectiveC/Internal.hpp ObjectiveC/Syntax.hpp | |
168 | code += ObjectiveC/Output.lo ObjectiveC/Replace.lo ObjectiveC/Library.lo | |
169 | ||
170 | Struct.hpp: | |
171 | $$($(objcxx) -print-prog-name=cc1obj) -print-objc-runtime-info </dev/null >$@ | |
172 | ||
173 | ifeq ($(CY_OBJECTIVEC_MACH),1) | |
174 | code += Handler.lo | |
175 | cflags += -DCY_ATTACH -DCY_LIBRARY='"$(libdir)/libcycript.$(dll)"' | |
176 | inject += Mach/Inject.lo | |
177 | ||
178 | Mach/Inject.lo: Trampoline.t.hpp Baton.hpp | |
179 | ||
180 | %.t.lo: %.t.cpp Baton.hpp Trampoline.hpp | |
181 | $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $< -fno-stack-protector -fno-exceptions -O0 | |
182 | ||
183 | %.t.hpp: %.t.lo trampoline.sh | |
184 | $(srcdir)/trampoline.sh $@ .libs/lib$*.t.$(dll) $* $(sed) $(otool) $(lipo) $(nm) $(libtool) --mode=link $(cxx) $(ldflags) -o lib$*.t.la $< -rpath $(libdir) -Xcompiler -nostdlib | |
185 | endif | |
186 | endif | |
187 | ||
188 | all: $(all) | |
189 | ||
190 | clean:: | |
191 | 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 | |
192 | ifneq ($(srcdir),.) | |
193 | rm -rf Mach ObjectiveC sig | |
194 | endif | |
195 | ||
196 | distclean: clean | |
197 | rm -f GNUmakefile Makefile config.log config.status libtool | |
198 | ||
199 | %.yy: %.yy.in | |
200 | $(srcdir)/Filter.sh <$< >$@ $(filters) | |
201 | ||
202 | %.l: %.l.in | |
203 | $(srcdir)/Filter.sh <$< >$@ $(filters) | |
204 | ||
205 | Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.yy | |
206 | $(bison) -v --report=state $< | |
207 | ||
208 | lex.cy.c: Cycript.l | |
209 | $(flex) -t $< | $(sed) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@ | |
210 | ||
211 | #Parser.hpp: Parser.py Parser.dat | |
212 | # ./Parser.py <Parser.dat >$@ | |
213 | ||
214 | Cycript.tab.lo: Cycript.tab.cc $(header) | |
215 | $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $< | |
216 | ||
217 | lex.cy.lo: lex.cy.c $(header) | |
218 | $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $< | |
219 | ||
220 | %.lo: %.cpp $(header) | |
221 | $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $< | |
222 | ||
223 | %.lo: %.mm $(header) | |
224 | $(libtool) --mode=compile $(objcxx) $(objcxxflags) $(cflags) -c -o $@ $< | |
225 | ||
226 | libcycript.la: $(code) | |
227 | $(libtool) --mode=link $(cxx) $(ltflags) $(ldflags) -o $@ $(filter %.lo,$^) $(library) $(link) -rpath $(libdir) | |
228 | $(ldid) .libs/$(lib)cycript.$(dll) | |
229 | ||
230 | cycript: Console.lo libcycript.la $(inject) | |
231 | $(libtool) --mode=link $(cxx) $(ltflags) $(ldflags) -o $@ $(filter %.lo,$^) libcycript.la $(link) -rpath $(libdir) | |
232 | $(entitle) .libs/cycript | |
233 | ||
234 | package: $(deb) | |
235 | ||
236 | test: cycript | |
237 | if [[ -e target.cy ]]; then ./cycript -c target.cy && echo; fi | |
238 | 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 | |
239 | if [[ -e test.cy ]]; then ./cycript test.cy; fi | |
240 | ||
241 | install: cycript libcycript.la | |
242 | $(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) | |
243 | $(libtool) --mode=install $(INSTALL_PROGRAM) libcycript.la $(DESTDIR)$(libdir)/libcycript.la | |
244 | $(libtool) --mode=install $(INSTALL_PROGRAM) cycript $(DESTDIR)$(bindir)/cycript | |
245 | ifneq ($(CY_ATTACH_GROUP),) | |
246 | chgrp $(CY_ATTACH_GROUP) $(DESTDIR)$(bindir)/cycript | |
247 | chmod g+s $(DESTDIR)$(bindir)/cycript | |
248 | endif | |
249 | ||
250 | uninstall: | |
251 | $(libtool) --mode=uninstall rm -f $(DESTDIR)$(bindir)/cycript | |
252 | $(libtool) --mode=uninstall rm -f $(DESTDIR)$(libdir)/libcycript.la | |
253 | ||
254 | .PHONY: all clean dist install uninstall package test control.tmp |