##// END OF EJS Templates
Update Inno Setup installer to install INI file.
Update Inno Setup installer to install INI file.

File last commit:

r1006:b0e58143 default
r1302:ac8debb9 default
Show More
Makefile
21 lines | 301 B | text/x-makefile | MakefileLexer
SOURCES=$(wildcard *.[0-9].txt)
MAN=$(SOURCES:%.txt=%)
HTML=$(SOURCES:%.txt=%.html)
all: man html
man: $(MAN)
html: $(HTML)
%: %.xml
xmlto man $*.xml
%.xml: %.txt
asciidoc -d manpage -b docbook $*.txt
%.html: %.txt
asciidoc -b html $*.txt
clean:
$(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html)