diff options
author | Christopher Baines <mail@cbaines.net> | 2014-08-10 15:08:58 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2014-08-10 15:08:58 +0100 |
commit | 85c2ebe83a5d95201f99a00e0499d97659879cb8 (patch) | |
tree | fe468f64b73500519662948a081e9e4645ffaca1 /Makefile | |
parent | d77036bb8e7bcf4b33ff836d8fc121c9d0b04d8e (diff) | |
download | album-examples-master.tar album-examples-master.tar.gz |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -5,8 +5,15 @@ ikiwiki: ikiwiki-dest: ikiwiki cd ikiwiki && perl Makefile.PL PREFIX=../ikiwiki-dest && make && make install -all: ikiwiki-dest - export PERL5LIB=`pwd`/ikiwiki && PATH=ikiwiki-dest/bin:$(PATH); find . -maxdepth 1 -name "*\.setup" -exec ikiwiki --setup {} \; +.PHONY: basic large + +basic: ikiwiki-dest + export PERL5LIB=`pwd`/ikiwiki && PATH=ikiwiki-dest/bin:$(PATH); find . -maxdepth 1 -name "basic*\.setup" -exec ikiwiki --setup {} \; + +large: ikiwiki-dest + export PERL5LIB=`pwd`/ikiwiki && PATH=ikiwiki-dest/bin:$(PATH); find . -maxdepth 1 -name "large*\.setup" -exec ikiwiki --setup {} \; + +all: basic large clean: rm -rf ikiwiki-dest |