aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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