- 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
20 lines
347 B
Makefile
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)
|