diff options
author | Hristo Venev <hristo@venev.name> | 2020-02-05 02:55:36 +0100 |
---|---|---|
committer | Hristo Venev <hristo@venev.name> | 2020-02-05 03:17:43 +0100 |
commit | 436256044bd2577a05de0428303c326b1a0225f0 (patch) | |
tree | 99191037b61d9eeb3b32f133b8690c7358f2faaf /man/Makefile | |
parent | ff7ea7b5583ffce18ccb4bb56860a3eb145c688e (diff) |
Add man pages.
Diffstat (limited to 'man/Makefile')
-rw-r--r-- | man/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/man/Makefile b/man/Makefile new file mode 100644 index 0000000..fcea268 --- /dev/null +++ b/man/Makefile @@ -0,0 +1,10 @@ +PAGES = wgconfd.5 wgconfd.8 + +.PHONY: all clean +all: $(PAGES) + +clean: + rm $(PAGES) + +%: %.scd + scdoc < $< > $@ |