X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/c1582939561770d8655b9378ec80de362bad89b4..d15b59f5d4f43d12719c5ce37518246058b405c6:/makefile diff --git a/makefile b/makefile index 63bda29..1ca4693 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,132 @@ -name := Cyrver -flags := -framework CFNetwork -framework JavaScriptCore -framework WebCore -base := ../tweaks -include ../tweaks/tweak.mk +SHELL := $(shell which bash 2>/dev/null) + +ifndef PKG_TARG +target := +else +target := $(PKG_TARG)- +endif + +flags := +objc := + +svn := $(shell svnversion) + +all: +all := libcycript.db cycript + +dpkg_architecture := $(shell which dpkg-architecture 2>/dev/null) +ifneq ($(dpkg_architecture),) +arch := $(shell $(dpkg_architecture) -qDEB_HOST_ARCH 2>/dev/null) +endif + +header := Cycript.tab.hh Parser.hpp Pooling.hpp cycript.hpp Internal.hpp Error.hpp String.hpp Exception.hpp Standard.hpp +code := sig/ffi_type.o sig/parse.o sig/copy.o +code += Replace.o Output.o +code += Cycript.tab.o lex.cy.o +code += Network.o Parser.o +code += JavaScriptCore.o Library.o + +filters := C #E4X +ldid := true +dll := so +apr := $(shell apr-1-config --link-ld) +library := $(apr) -lffi -liconv -lsqlite3 +console := $(apr) -lreadline +depends := + +uname_s := $(shell uname -s) +uname_p := $(shell uname -p) +-include $(uname_s).mk +-include $(uname_s)-$(uname_p).mk + +ifeq ($(filter ObjectiveC,$(filters)),) +ifneq ($(shell which gnustep-config 2>/dev/null),) +include GNUstep.mk +endif +endif + +flags += -g3 -O0 -DYYDEBUG=1 +#flags += -g0 -O3 +flags += -Wall -Werror -Wno-parentheses #-Wno-unused +flags += -fPIC -fno-common +flags += -I. -I$(shell apr-1-config --includedir) + +all += libcycript.$(dll) + +ifdef arch +deb := $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2 | sed -e 's/\#/$(svn)/')_$(arch).deb + +all: $(deb) + +extra: + +$(deb): $(all) + rm -rf package + mkdir -p package/DEBIAN + sed -e 's/&/$(foreach depend,$(depends),$(depend),)/;s/,$$//;s/#/$(svn)/;s/%/$(arch)/' control >package/DEBIAN/control + $(MAKE) extra + mkdir -p package/usr/{bin,lib,sbin} + cp -a libcycript.$(dll) package/usr/lib + cp -a cycript package/usr/bin + #cp -a cyrver package/usr/sbin + cp -a libcycript.db package/usr/lib + dpkg-deb -b package $(deb) +endif + +all: $(all) + +clean: + 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 + +libcycript.db: Bridge.def + rm -f libcycript.db + { \ + echo 'create table "bridge" ("mode" int not null, "name" text not null, "value" text null);'; \ + 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'"'"');/'; \ + grep '^:' Bridge.def | sed -e 's/^: \([^ ]*\) \(.*\)/insert into "bridge" ("mode", "name", "value") values (-1, '"'"'\1'"'"', '"'"'\2'"'"');/'; \ + 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'"'"');/'; \ + } | sqlite3 libcycript.db + +%.y: %.y.in + ./Filter.sh <$< >$@ $(filters) + +%.l: %.l.in + ./Filter.sh <$< >$@ $(filters) + +Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.y + bison -v --report=state $< + +lex.cy.c: Cycript.l + flex $< + +#Parser.hpp: Parser.py Parser.dat +# ./Parser.py $@ + +Cycript.tab.o: Cycript.tab.cc $(header) + $(target)g++ $(flags) -c -o $@ $< + +lex.cy.o: lex.cy.c $(header) + $(target)g++ $(flags) -c -o $@ $< + +%.o: %.cpp $(header) + $(target)g++ $(flags) -c -o $@ $< + +#objc := -x c++ +%.o: %.mm $(header) + $(target)g++ $(objc) $(flags) -c -o $@ $< + +libcycript.$(dll): $(code) + $(target)g++ $(flags) -shared -dynamiclib -o $@ $(filter %.o,$^) $(library) $(link) + $(ldid) $@ + +cycript: Console.o libcycript.$(dll) + $(target)g++ $(flags) -o $@ $(filter %.o,$^) -L. -lcycript $(console) $(link) + $(ldid) cycript + +package: $(deb) + +test: $(deb) + dpkg -i $(deb) + cycript test.cy + +.PHONY: all clean extra package