1 SHELL := $(shell which bash 2>/dev/null)
 
   9 flags ?= -g3 -O0 -DYYDEBUG=1
 
  11 paths := $(foreach path,$(paths),$(wildcard $(path)))
 
  12 flags += $(foreach path,$(paths),-I$(path) -L$(path))
 
  15 svn := $(shell svnversion)
 
  18 all := libcycript.db cycript
 
  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)
 
  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
 
  38 apr := $(shell apr-1-config --link-ld)
 
  39 library := $(apr) -lffi -lsqlite3
 
  40 console := $(apr) -lreadline
 
  44 uname_s ?= $(shell uname -s)
 
  45 uname_p ?= $(shell uname -p)
 
  47 -include $(uname_s).mk
 
  48 -include $(uname_s)-$(uname_p).mk
 
  50 ifeq ($(filter ObjectiveC,$(filters)),)
 
  51 ifneq ($(shell which gnustep-config 2>/dev/null),)
 
  56 flags += -Wall -Werror -Wno-parentheses #-Wno-unused
 
  57 flags += -fPIC -fno-common
 
  58 flags += -I. -I$(shell apr-1-config --includedir)
 
  60 all += libcycript.$(dll)
 
  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
 
  70 control: control.in cycript libcycript.so
 
  71         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)/' $< >$@
 
  74         sed -e 's/&/$(foreach depend,$(depends),$(depend),)/;s/,$$//;s/#/$(svn)/;s/%/$(arch)/' $< >$@
 
  77 $(deb): $(all) control
 
  79         mkdir -p package/DEBIAN
 
  80         cp -a control package/DEBIAN
 
  82         mkdir -p package/usr/{bin,lib,sbin}
 
  83         cp -a libcycript.$(dll) package/usr/lib
 
  84         cp -a cycript package/usr/bin
 
  85         #cp -a cyrver package/usr/sbin
 
  86         cp -a libcycript.db package/usr/lib
 
  87         dpkg-deb -b package $(deb)
 
  93         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
 
  95 libcycript.db: Bridge.def
 
  98             echo 'create table "bridge" ("mode" int not null, "name" text not null, "value" text null);'; \
 
  99             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'"'"');/'; \
 
 100             grep '^:' Bridge.def | sed -e 's/^: \([^ ]*\) \(.*\)/insert into "bridge" ("mode", "name", "value") values (-1, '"'"'\1'"'"', '"'"'\2'"'"');/'; \
 
 101             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'"'"');/'; \
 
 102         } | sqlite3 libcycript.db
 
 105         ./Filter.sh <$< >$@ $(filters)
 
 108         ./Filter.sh <$< >$@ $(filters)
 
 110 Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.y
 
 111         bison -v --report=state $<
 
 116 #Parser.hpp: Parser.py Parser.dat
 
 117 #       ./Parser.py <Parser.dat >$@
 
 119 Cycript.tab.o: Cycript.tab.cc $(header)
 
 120         $(target)g++ $(flags) -c -o $@ $<
 
 122 lex.cy.o: lex.cy.c $(header)
 
 123         $(target)g++ $(flags) -c -o $@ $<
 
 126         $(target)g++ $(flags) -c -o $@ $<
 
 130         $(target)g++ $(objc) $(flags) -c -o $@ $<
 
 132 libcycript.$(dll): $(code)
 
 133         $(target)g++ $(flags) -shared -dynamiclib -o $@ $(filter %.o,$^) $(library) $(link)
 
 136 cycript: Console.o libcycript.$(dll) $(inject)
 
 137         $(target)g++ $(flags) -o $@ $(filter %.o,$^) -L. -lcycript $(console) $(link)
 
 146 .PHONY: all clean extra package