X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=Makefile;h=58a7ae5f9e11c08a1111c1c948e6d3660ae620ee;hb=36753e2ffb06df7098fbe0e8f1760870f75741e5;hp=9eeb0f444ca8c2dec2a87b32f239bdc013075157;hpb=23e93d1d63fc861743101a07f3855afb886c0f93;p=wfpl-cms.git diff --git a/Makefile b/Makefile index 9eeb0f4..58a7ae5 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,40 @@ +svgs= +generated_images= $(svgs:.svg=.png) +images= +images += $(generated_images) -all: style.css tags +objects= $(generated_images) .image-mtimes.styl style.css tags -tags: *.php code/*.php code/wfpl/*.php - exuberant-ctags *.php code/*.php code/wfpl/*.php +all: $(objects) -style.css: style.less - lessc $< $@ +clean: + rm -f $(objects) + +style.css: styl.styl .image-mtimes.styl + compile-stylus $< + +.image-mtimes.styl: $(images) + ( \ + echo -n 'mtimes = {'; \ + div=' '; \ + for x in $^; do \ + echo -n "$$div '$$x': \"$$x?m=$$(stat -c '%Y' $$x)\""; \ + div=,; \ + done; \ + echo " }"; \ + ) > $@ || ( \ + rm -f $@; \ + exit 1; \ + ) +%.png: %.svg + ( \ + inkscape -f $< -e $@ --export-area-page --without-gui --export-dpi=360 \ + && mogrify -alpha off -geometry '25%' $@ \ + && pngfix $@ \ + ) || ( \ + rm -f $@ \ + ; exit 1 \ + ) + +tags: *.php code/*.php inc/wfpl/*.php + exuberant-ctags *.php code/*.php inc/wfpl/*.php