wpa-cute-freebsd/doc/Makefile
loh.tar 3705de2b4a Update doc/
- Rename the source .sgml file to fit the new executable
- Add the new features of wpaCute
- Resort the order of options
- Update the Legal section. Use there <literallayout> to force a nice
  look, as I think, but that may not "best practice".
  Furthermore modified Jounis copyright slightly in a way I think it
  has absolutely no drawbacks
2018-07-06 10:27:21 +02:00

20 lines
347 B
Makefile

all: man html pdf
FILES += wpa-cute
man:
for i in $(FILES); do docbook2man $$i.sgml; done
html:
for i in $(FILES); do docbook2html $$i.sgml && \
mv index.html $$i.html; done
pdf:
for i in $(FILES); do docbook2pdf $$i.sgml; done
clean:
rm -f wpa-cute.8
rm -f manpage.links manpage.refs
rm -f $(FILES:%=%.pdf)
rm -f $(FILES:%=%.html)