diff options
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/docs/Makefile b/docs/Makefile index f8671f6..ef05303 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -3,16 +3,19 @@ MANPAGES = netcfg.8 netcfg-profiles.5 WEBPAGES = index.html features.html $(MANPAGES:%=%.html) -.PHONY: all clean - -all: $(MANPAGES) $(WEBPAGES) +.PHONY: manpages website clean +manpages: $(MANPAGES) +website: website.tar.xz $(MANPAGES): %: %.txt footer.txt a2x -d manpage -f manpage -a manversion=$(VERSION) $< $(WEBPAGES): %.html: %.txt - asciidoc -a disable-javascript -a version=$(VERSION) $< + asciidoc -a disable-javascript -a linkcss -a max-width=960px $< + +website.tar.xz: $(WEBPAGES) + tar --transform "s%^%netcfg/%" -cJf $@ $^ -C /etc/asciidoc/stylesheets asciidoc.css clean: - -@rm -vf $(MANPAGES) $(WEBPAGES) 2>/dev/null + -@rm -vf $(MANPAGES) $(WEBPAGES) website.tar.xz 2>/dev/null |