diff options
author | Jonas Smedegaard <dr@jones.dk> | 2011-01-30 13:46:31 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2011-01-30 13:46:31 +0100 |
commit | 4eb891228a6fc627bcc1077fbca22b92d8bf7101 (patch) | |
tree | 27fb75b1760795cfcc1882635e96209a1f503279 |
Add initial Makefile.
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6feb84e --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +all: init build +build: web +install: installweb + +init: + git submodule init + git submodule update --init --recursive + touch $@ + +web: + find config -name '*.setup' -exec ikiwiki --setup '{}' --rebuild ';' |