]> git.saurik.com Git - cycript.git/blob - makefile
Use -m32 instead of a uname -m check.
[cycript.git] / makefile
1 SHELL := $(shell which bash 2>/dev/null)
2
3 ifndef PKG_TARG
4 target :=
5 else
6 target := $(PKG_TARG)-
7 endif
8
9 gcc := g++
10 flags ?= -g3 -O0 -DYYDEBUG=1
11
12 paths := $(foreach path,$(paths),$(wildcard $(path)))
13 flags += $(foreach path,$(paths),-I$(path) -L$(path))
14 objc :=
15
16 svn := $(shell svnversion)
17
18 all:
19 all := cycript
20
21 dpkg_architecture := $(shell which dpkg-architecture 2>/dev/null)
22 ifneq ($(dpkg_architecture),)
23 arch := $(shell $(dpkg_architecture) -qDEB_HOST_ARCH 2>/dev/null)
24 endif
25
26 header := Cycript.tab.hh Parser.hpp Pooling.hpp cycript.hpp Internal.hpp Error.hpp String.hpp Exception.hpp Standard.hpp
27
28 code :=
29 code += Replace.o Output.o
30 code += Cycript.tab.o lex.cy.o
31 code += Network.o Parser.o
32 code += JavaScriptCore.o Library.o
33
34 inject :=
35
36 filters := #E4X
37 ldid := true
38 entitle := $(ldid)
39 lib := lib
40 dll := so
41 apr := $(shell apr-1-config --link-ld)
42 library := $(apr)
43 console := $(apr) -lreadline
44 depends :=
45
46 restart ?= $(MAKE)
47 uname_s ?= $(shell uname -s)
48 uname_p ?= $(shell uname -p)
49
50 -include $(uname_s).mk
51 -include $(uname_s)-$(uname_p).mk
52
53 ifneq ($(shell pkg-config libffi --modversion 2>/dev/null),)
54 flags += $(shell pkg-config --cflags libffi)
55 endif
56
57 ifdef CY_EXECUTE
58 ifeq ($(filter ObjectiveC,$(filters)),)
59 ifneq ($(shell which gnustep-config 2>/dev/null),)
60 include GNUstep.mk
61 endif
62 endif
63 endif
64
65 flags += -Wall -Werror -Wno-parentheses #-Wno-unused
66 flags += -fno-common
67 flags += -I. -Iinclude -I$(shell apr-1-config --includedir)
68
69 all += $(lib)cycript.$(dll)
70
71 filters += $(shell bison <(echo '%code{}%%_:') -o/dev/null 2>/dev/null && echo Bison24 || echo Bison23)
72
73 ifdef arch
74 deb := $(shell grep ^Package: control.in | cut -d ' ' -f 2-)_$(shell grep ^Version: control.in | cut -d ' ' -f 2 | sed -e 's/\#/$(svn)/')_$(arch).deb
75
76 all:
77
78 extra::
79
80 ifeq ($(depends)$(dll),dylib)
81 control.tmp: control.in cycript $(lib)cycript.dylib
82 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)/' $< >$@
83 else
84 ifeq ($(depends)$(dll),so)
85 control.tmp: control.in cycript $(lib)cycript.so
86 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)/' $< >$@
87 else
88 control.tmp: control.in
89 sed -e 's/&/$(foreach depend,$(depends),$(depend),)/;s/,$$//;s/#/$(svn)/;s/%/$(arch)/' $< >$@
90 endif
91 endif
92
93 control: control.tmp
94 [[ -e control ]] && diff control control.tmp &>/dev/null || cp -pRf control.tmp control
95
96 $(deb): $(all) control
97 rm -rf package
98 mkdir -p package/DEBIAN
99 cp -pR control package/DEBIAN
100 mkdir -p package/usr/{bin,lib,sbin}
101 $(restart) extra
102 cp -pR $(lib)cycript.$(dll) package/usr/lib
103 cp -pR cycript package/usr/bin
104 #cp -pR cyrver package/usr/sbin
105 dpkg-deb -b package $(deb)
106 endif
107
108 all: $(all)
109
110 clean:
111 rm -f *.o $(lib)cycript.$(dll) $(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.hpp
112
113 %.yy: %.yy.in
114 ./Filter.sh <$< >$@ $(filters)
115
116 %.l: %.l.in
117 ./Filter.sh <$< >$@ $(filters)
118
119 Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.yy
120 bison -v --report=state $<
121
122 lex.cy.c: Cycript.l
123 flex -t $< | sed -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@
124
125 #Parser.hpp: Parser.py Parser.dat
126 # ./Parser.py <Parser.dat >$@
127
128 Cycript.tab.o: Cycript.tab.cc $(header)
129 $(target)$(gcc) $(flags) -c -o $@ $<
130
131 lex.cy.o: lex.cy.c $(header)
132 $(target)$(gcc) $(flags) -c -o $@ $<
133
134 %.o: %.cpp $(header)
135 $(target)$(gcc) $(flags) -c -o $@ $<
136
137 #objc := -x c++
138 %.o: %.mm $(header)
139 $(target)$(gcc) $(objc) $(flags) -c -o $@ $<
140
141 $(lib)cycript.$(dll): $(code)
142 $(target)$(gcc) $(flags) -shared -dynamiclib -o $@ $(filter %.o,$^) $(library) $(link)
143 $(ldid) $@
144
145 cycript: Console.o $(lib)cycript.$(dll) $(inject)
146 $(target)$(gcc) $(flags) -o $@ $(filter %.o,$^) -L. -lcycript $(console) $(link)
147 $(entitle) cycript
148
149 package: $(deb)
150
151 test: $(deb)
152 dpkg -i $(deb)
153 if [[ -e target.cy ]]; then cycript -c target.cy && echo; fi
154 if [[ -e jquery.js ]]; then /usr/bin/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
155 if [[ -e test.cy ]]; then cycript test.cy; fi
156
157 install: cycript $(lib)cycript.$(dll)
158 cp -p cycript /usr/bin
159 cp -p $(lib)cycript.$(dll) /usr/lib
160
161 .PHONY: all clean extra package control.tmp