1 SHELL := $(shell which bash 2>/dev/null)
 
  12 flags ?= -g3 -O0 -DYYDEBUG=1
 
  14 paths := $(foreach path,$(paths),$(wildcard $(path)))
 
  15 flags += $(foreach path,$(paths),-I$(path) -L$(path))
 
  18 svn := $(shell svnversion)
 
  23 dpkg_architecture := $(shell which dpkg-architecture 2>/dev/null)
 
  24 ifneq ($(dpkg_architecture),)
 
  25 arch := $(shell $(dpkg_architecture) -qDEB_HOST_ARCH 2>/dev/null)
 
  28 header := Cycript.tab.hh Parser.hpp Pooling.hpp List.hpp Local.hpp cycript.hpp Internal.hpp Error.hpp String.hpp Exception.hpp Standard.hpp
 
  31 code += Replace.o Output.o
 
  32 code += Cycript.tab.o lex.cy.o
 
  33 code += Network.o Parser.o
 
  34 code += JavaScriptCore.o Library.o
 
  43 apr_config := apr-1-config
 
  49 uname_s ?= $(shell uname -s)
 
  50 uname_p ?= $(shell uname -p)
 
  52 -include $(uname_s).mk
 
  53 -include $(uname_s)-$(uname_p).mk
 
  55 ifneq ($(shell pkg-config libffi --modversion 2>/dev/null),)
 
  56 flags += $(shell pkg-config --cflags libffi)
 
  60 ifeq ($(filter ObjectiveC,$(filters)),)
 
  61 ifneq ($(shell which gnustep-config 2>/dev/null),)
 
  67 apr := $(shell $(apr_config) --link-ld)
 
  71 flags += -Wall -Werror -Wno-parentheses #-Wno-unused
 
  73 flags += -I. -Iinclude -I$(shell $(apr_config) --includedir)
 
  75 all += $(lib)cycript.$(dll)
 
  77 filters += $(shell bison <(echo '%code{}%%_:') -o/dev/null 2>/dev/null && echo Bison24 || echo Bison23)
 
  80 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
 
  86 ifeq ($(depends)$(dll),dylib)
 
  87 control.tmp: control.in cycript $(lib)cycript.dylib
 
  88         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)/' $< >$@
 
  90 ifeq ($(depends)$(dll),so)
 
  91 control.tmp: control.in cycript $(lib)cycript.so
 
  92         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)/' $< >$@
 
  94 control.tmp: control.in
 
  95         sed -e 's/&/$(foreach depend,$(depends),$(depend),)/;s/,$$//;s/#/$(svn)/;s/%/$(arch)/' $< >$@
 
 100         [[ -e control ]] && diff control control.tmp &>/dev/null || cp -pRf control.tmp control
 
 102 $(deb): $(all) control
 
 104         mkdir -p package/DEBIAN
 
 105         cp -pR control package/DEBIAN
 
 106         mkdir -p package$(prefix)/{bin,lib,sbin}
 
 108         cp -pR $(lib)cycript.$(dll) package$(prefix)/lib
 
 109         cp -pR cycript package$(prefix)/bin
 
 110         #cp -pR cyrver package$(prefix)/sbin
 
 111         dpkg-deb -b package $(deb)
 
 117         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 Cycript.output
 
 120         ./Filter.sh <$< >$@ $(filters)
 
 123         ./Filter.sh <$< >$@ $(filters)
 
 125 Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.yy
 
 126         bison -v --report=state $<
 
 129         flex -t $< | sed -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@
 
 131 #Parser.hpp: Parser.py Parser.dat
 
 132 #       ./Parser.py <Parser.dat >$@
 
 134 Cycript.tab.o: Cycript.tab.cc $(header)
 
 135         $(target)$(gcc) $(flags) -c -o $@ $<
 
 137 lex.cy.o: lex.cy.c $(header)
 
 138         $(target)$(gcc) $(flags) -c -o $@ $<
 
 141         $(target)$(gcc) $(flags) -c -o $@ $<
 
 145         $(target)$(gcc) $(objc) $(flags) -c -o $@ $<
 
 147 $(lib)cycript.$(dll): $(code)
 
 148         $(target)$(gcc) $(flags) -shared -dynamiclib -o $@ $(filter %.o,$^) $(library) $(link)
 
 151 cycript: Console.o $(lib)cycript.$(dll) $(inject)
 
 152         $(target)$(gcc) $(flags) -o $@ $(filter %.o,$^) -L. -lcycript $(console) $(link)
 
 159         if [[ -e target.cy ]]; then cycript -c target.cy && echo; fi
 
 160         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
 
 161         if [[ -e test.cy ]]; then cycript test.cy; fi
 
 163 install: cycript $(lib)cycript.$(dll)
 
 164         sudo cp -p cycript /usr/bin
 
 165         sudo cp -p $(lib)cycript.$(dll) /usr/lib
 
 166         sudo chgrp procmod /usr/bin/cycript
 
 167         sudo chmod g+s /usr/bin/cycript
 
 170         sudo rm -f /usr/bin/cycript /usr/lib/libcycript.dylib
 
 172 .PHONY: all clean extra package control.tmp