diff options
author | Ludovic Courtès | 2008-04-23 20:56:10 +0200 |
---|---|---|
committer | Ludovic Courtès | 2008-04-23 20:56:10 +0200 |
commit | 087306a64cc34ea2b5415e3c1cd8505faedf4f14 (patch) | |
tree | 9c6bedaddc01b153c6157ff69f4d45bad7fdebc1 /web/GNUmakefile | |
parent | bea2afb188b41f4604ec251a0a39c60a469c5fd1 (diff) | |
download | skribilo-087306a64cc34ea2b5415e3c1cd8505faedf4f14.tar.gz skribilo-087306a64cc34ea2b5415e3c1cd8505faedf4f14.tar.lz skribilo-087306a64cc34ea2b5415e3c1cd8505faedf4f14.zip |
Add the web site source.
Diffstat (limited to 'web/GNUmakefile')
-rw-r--r-- | web/GNUmakefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/web/GNUmakefile b/web/GNUmakefile new file mode 100644 index 0000000..37b2a5e --- /dev/null +++ b/web/GNUmakefile @@ -0,0 +1,18 @@ +SKRIBILO := skribilo -v2 + +docs := index.skb +products := $(docs:%.skb=%.html) + + +all: $(products) + +%.html: %.skb + $(SKRIBILO) --target=html -o $@ $^ + +clean: + -rm -f $(products) + + +.PHONY: all clean + +# arch-tag: c5c7c80c-5cb1-47f2-a93d-53c690e30bd6 |