1 SHELL := $(shell which bash 2>/dev/null)
10 flags ?= -g3 -O0 -DYYDEBUG=1
12 paths := $(foreach path,$(paths),$(wildcard $(path)))
13 flags += $(foreach path,$(paths),-I$(path) -L$(path))
16 svn := $(shell svnversion)
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)
26 header := Cycript.tab.hh Parser.hpp Pooling.hpp cycript.hpp Internal.hpp Error.hpp String.hpp Exception.hpp Standard.hpp
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
41 apr := $(shell apr-1-config --link-ld)
43 console := $(apr) -lreadline
47 uname_s ?= $(shell uname -s)
48 uname_p ?= $(shell uname -p)
50 -include $(uname_s).mk
51 -include $(uname_s)-$(uname_p).mk
54 ifeq ($(filter ObjectiveC,$(filters)),)
55 ifneq ($(shell which gnustep-config 2>/dev/null),)
61 flags += -Wall -Werror -Wno-parentheses #-Wno-unused
63 flags += -I. -Iinclude -I$(shell apr-1-config --includedir)
65 all += $(lib)cycript.$(dll)
67 filters += $(shell bison <(echo '%code{}%%_:') -o/dev/null 2>/dev/null && echo Bison24 || echo Bison23)
70 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
76 ifeq ($(depends)$(dll),dylib)
77 control.tmp: control.in cycript $(lib)cycript.dylib
78 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)/' $< >$@
80 ifeq ($(depends)$(dll),so)
81 control.tmp: control.in cycript $(lib)cycript.so
82 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)/' $< >$@
84 control.tmp: control.in
85 sed -e 's/&/$(foreach depend,$(depends),$(depend),)/;s/,$$//;s/#/$(svn)/;s/%/$(arch)/' $< >$@
90 [[ -e control ]] && diff control control.tmp &>/dev/null || cp -pRf control.tmp control
92 $(deb): $(all) control
94 mkdir -p package/DEBIAN
95 cp -pR control package/DEBIAN
96 mkdir -p package/usr/{bin,lib,sbin}
98 cp -pR $(lib)cycript.$(dll) package/usr/lib
99 cp -pR cycript package/usr/bin
100 #cp -pR cyrver package/usr/sbin
101 dpkg-deb -b package $(deb)
107 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
110 ./Filter.sh <$< >$@ $(filters)
113 ./Filter.sh <$< >$@ $(filters)
115 Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.yy
116 bison -v --report=state $<
121 #Parser.hpp: Parser.py Parser.dat
122 # ./Parser.py <Parser.dat >$@
124 Cycript.tab.o: Cycript.tab.cc $(header)
125 $(target)$(gcc) $(flags) -c -o $@ $<
127 lex.cy.o: lex.cy.c $(header)
128 $(target)$(gcc) $(flags) -c -o $@ $<
131 $(target)$(gcc) $(flags) -c -o $@ $<
135 $(target)$(gcc) $(objc) $(flags) -c -o $@ $<
137 $(lib)cycript.$(dll): $(code)
138 $(target)$(gcc) $(flags) -shared -dynamiclib -o $@ $(filter %.o,$^) $(library) $(link)
141 cycript: Console.o $(lib)cycript.$(dll) $(inject)
142 $(target)$(gcc) $(flags) -o $@ $(filter %.o,$^) -L. -lcycript $(console) $(link)
149 if [[ -e target.cy ]]; then cycript -c target.cy && echo; fi
150 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
151 if [[ -e test.cy ]]; then cycript test.cy; fi
153 install: cycript $(lib)cycript.$(dll)
154 cp -p cycript /usr/bin
155 cp -p $(lib)cycript.$(dll) /usr/lib
157 .PHONY: all clean extra package control.tmp