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