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