]> git.saurik.com Git - cycript.git/blame - GNUmakefile.in
Support Objective-C class extension syntax.
[cycript.git] / GNUmakefile.in
CommitLineData
3530897b
DWT
1# @configure_input@
2
e9c9a47c 3SHELL := @_BASH@
9c60689e
DWT
4VPATH := @srcdir@
5
6ifndef PKG_TARG
7target :=
8else
9target := $(PKG_TARG)-
10endif
11
12srcdir := @srcdir@
13top_builddir := @top_builddir@
14flex := @FLEX@
15libtool := @LIBTOOL@
16cxx := @CXX@
17objcxx := @OBJCXX@
aff87425 18cflags := @CPPFLAGS@ @CXXFLAGS@ -DYYDEBUG=1 $(filter -DHAVE_FFI% -DHAVE_READLINE% -DHAVE_HISTORY_H,@DEFS@)
47aaa820 19objcxxflags := @OBJCXXFLAGS@
549f29b5 20ldflags := @LDFLAGS@
9d13f949 21ltflags := @LTFLAGS@
549f29b5 22library := @LIBS@ @LTLIBAPR@ @LTLIBICONV@
e1cce270
DWT
23sed := @SED@
24bison := @BISON@
e9c9a47c 25time := @TIME@
3fd51f51 26gperf := @GPERF@
794e88e7
DWT
27otool := @_OTOOL@
28lipo := @_LIPO@
29nm := @_NM@
3530897b
DWT
30
31INSTALL := @INSTALL@
32INSTALL_PROGRAM := @INSTALL_PROGRAM@
33INSTALL_DATA := @INSTALL_DATA@
34
35PACKAGE_TARNAME := @PACKAGE_TARNAME@
36prefix := @prefix@
37exec_prefix := @exec_prefix@
38bindir := @bindir@
39sbindir := @sbindir@
40libexecdir := @libexecdir@
41datarootdir := @datarootdir@
42datadir := @datadir@
43sysconfdir := @sysconfdir@
44sharedstatedir := @sharedstatedir@
45localstatedir := @localstatedir@
46includedir := @includedir@
47oldincludedir := @oldincludedir@
48docdir := @docdir@
49infodir := @infodir@
50htmldir := @htmldir@
51dvidir := @dvidir@
52pdfdir := @pdfdir@
53psdir := @psdir@
54libdir := @libdir@
55localedir := @localedir@
56mandir := @mandir@
9c60689e 57
3fd51f51 58CY_EXECUTE := @CY_EXECUTE@
47aaa820 59CY_OBJECTIVEC := @CY_OBJECTIVEC@
e1cce270 60CY_OBJECTIVEC_MACH := @CY_OBJECTIVEC_MACH@
794e88e7 61CY_ATTACH_GROUP := @CY_ATTACH_GROUP@
3fd51f51 62
b65019fe
DWT
63svn := @SVN@
64svnversion := @SVNVERSION@
65
66ifneq ($(svnversion),)
67release := $(shell svnversion $(srcdir))
68
69ifneq ($(release),exported)
70gnutar := @GNUTAR@
71version := @PACKAGE_VERSION@.$(release)
72tarname := @PACKAGE_TARNAME@-$(version)
73endif
74endif
75
9c60689e 76paths := $(foreach path,$(paths),$(wildcard $(path)))
549f29b5 77cflags += $(foreach path,$(paths),-I$(path) -L$(path))
9c60689e 78
9c60689e
DWT
79all:
80all := 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 87header := 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
89code :=
549f29b5
DWT
90code += Replace.lo Output.lo
91code += Cycript.tab.lo lex.cy.lo
92code += Network.lo Parser.lo
93code += JavaScriptCore.lo Library.lo
9c60689e
DWT
94
95inject :=
96
97filters := #E4X
98ldid := true
8ad1528b 99entitle = $(ldid) -Scycript.xml
9c60689e 100lib := lib
f8ed1165 101dll := @SO@
8ad1528b 102depends ?=
9c60689e
DWT
103
104restart ?= $(MAKE)
105uname_s ?= $(shell uname -s)
106uname_p ?= $(shell uname -p)
107
3fd51f51
DWT
108ifeq ($(CY_EXECUTE),1)
109cflags += -DCY_EXECUTE
110code += sig/ffi_type.lo sig/parse.lo sig/copy.lo
111code += Execute.lo Bridge.lo
112filters += C
25b7683a 113header += JavaScript.hpp
9c60689e
DWT
114endif
115
549f29b5
DWT
116cflags += -Wall -Werror -Wno-parentheses #-Wno-unused
117cflags += -fno-common
9c60689e 118ifneq ($(srcdir),.)
549f29b5 119cflags += -I.
9c60689e 120endif
549f29b5 121cflags += -I$(srcdir) -I$(srcdir)/include
9c60689e 122
a7f2d052 123all += libcycript.la
9c60689e 124
e1cce270 125filters += $(shell $(bison) <(echo '%code{}%%_:') -o/dev/null 2>/dev/null && echo Bison24 || echo Bison23)
9c60689e
DWT
126
127ifdef arch
8ad1528b 128deb := $(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
130all:
131
9c60689e 132ifeq ($(depends)$(dll),dylib)
8ad1528b
JF
133control.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
135else
136ifeq ($(depends)$(dll),so)
8ad1528b
JF
137control.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
139else
140control.tmp: control.in
5930c53d 141 $(sed) -e 's/&/$(depends)/;s/,$$//;s/#/$(version)/;s/%/$(arch)/' $< >$@
9c60689e
DWT
142endif
143endif
144
145control: 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)
158endif
159
3fd51f51
DWT
160ifeq ($(CY_EXECUTE),1)
161Bridge.gperf: Bridge.def Bridge.sh
162 $(srcdir)/Bridge.sh $< >$@
163
164Bridge.hpp: Bridge.gperf
e1cce270 165 $(gperf) $< | $(sed) -e 's/defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/0/' >$@
3fd51f51
DWT
166
167Bridge.lo: Bridge.hpp
168endif
169
47aaa820
DWT
170ifeq ($(CY_OBJECTIVEC),1)
171filters += ObjectiveC
172header += Struct.hpp ObjectiveC/Internal.hpp ObjectiveC/Syntax.hpp
173code += ObjectiveC/Output.lo ObjectiveC/Replace.lo ObjectiveC/Library.lo
174
175Struct.hpp:
176 $$($(objcxx) -print-prog-name=cc1obj) -print-objc-runtime-info </dev/null >$@
e1cce270
DWT
177
178ifeq ($(CY_OBJECTIVEC_MACH),1)
b112996a 179code += Handler.lo
f8ed1165 180cflags += -DCY_ATTACH -DCY_LIBRARY='"$(libdir)/libcycript.$(dll)"'
e1cce270
DWT
181inject += Mach/Inject.lo
182
183Mach/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 190endif
47aaa820
DWT
191endif
192
9c60689e
DWT
193all: $(all)
194
195clean::
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 197ifneq ($(srcdir),.)
790e5246 198 rm -rf Mach ObjectiveC sig
94690cff 199endif
9c60689e
DWT
200
201distclean: 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
210Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.yy
e1cce270 211 $(bison) -v --report=state $<
9c60689e
DWT
212
213lex.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
219Cycript.tab.lo: Cycript.tab.cc $(header)
220 $(libtool) --mode=compile $(cxx) $(cflags) -c -o $@ $<
9c60689e 221
549f29b5
DWT
222lex.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 231libcycript.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 235cycript: 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
239package: $(deb)
240
a7f2d052
DWT
241test: 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 246ifneq ($(gnutar),:)
b65019fe 247dist:
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)#' .
250endif
251
a7f2d052 252install: 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
256ifneq ($(CY_ATTACH_GROUP),)
257 chgrp $(CY_ATTACH_GROUP) $(DESTDIR)$(bindir)/cycript
258 chmod g+s $(DESTDIR)$(bindir)/cycript
259endif
9c60689e 260
a7f2d052
DWT
261uninstall:
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