summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2011-01-30 14:53:56 +0100
committerJonas Smedegaard <dr@jones.dk>2011-01-30 14:53:56 +0100
commit64bb4701a1c1a2677af7b7407f90f10fcb51c92d (patch)
tree1373055985360cc2b5e854e64ab700686526139e
parentdff271014d0b0149903429cff90b852210ee62fb (diff)
Simplify target naming and dependencies.
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 69c2471..603814c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,11 @@
-all: init build
-build: web
-install: installweb
+all: build
init:
git submodule init
git submodule update --init --recursive
touch $@
-web:
+build: init
find config -name '*.setup' -exec ikiwiki --setup '{}' --rebuild ';'
-.PHONY: all init build install web installweb
+.PHONY: all init build