diff options
author | Jonas Smedegaard <dr@jones.dk> | 2011-01-30 14:53:56 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2011-01-30 14:53:56 +0100 |
commit | 64bb4701a1c1a2677af7b7407f90f10fcb51c92d (patch) | |
tree | 1373055985360cc2b5e854e64ab700686526139e /Makefile | |
parent | dff271014d0b0149903429cff90b852210ee62fb (diff) |
Simplify target naming and dependencies.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -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 |