aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2014-08-10 15:08:58 +0100
committerChristopher Baines <mail@cbaines.net>2014-08-10 15:08:58 +0100
commit85c2ebe83a5d95201f99a00e0499d97659879cb8 (patch)
treefe468f64b73500519662948a081e9e4645ffaca1 /Makefile
parentd77036bb8e7bcf4b33ff836d8fc121c9d0b04d8e (diff)
downloadalbum-examples-master.tar
album-examples-master.tar.gz
Add example with large imagesHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cc8f49b..9d07c8b 100644
--- a/Makefile
+++ b/Makefile
@@ -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