Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 54cd5f086705fc74d36e19534be87f1d755716a3 authored by Alain Leufroy on 06 May 2012, 15:26:45 UTC, committed by Alain Leufroy on 06 May 2012, 15:26:45 UTC
1 parent 22ef467
Raw File
Tip revision: 54cd5f086705fc74d36e19534be87f1d755716a3 authored by Alain Leufroy on 06 May 2012, 15:26:45 UTC
[qt] manifest: fix when on working directory
Tip revision: 54cd5f0
Makefile
SOURCES=$(wildcard *.[0-9].txt)
MAN=$(SOURCES:%.txt=%)
HTML=$(SOURCES:%.txt=%.html)
PREFIX=/usr/local
MANDIR=$(PREFIX)/man
INSTALL=install -c

all: man html

man: $(MAN)

html: $(HTML)

%: %.xml
	xmlto man $*.xml

%.xml: %.txt
	asciidoc -d manpage -b docbook $*.txt

%.html: %.txt
	asciidoc -b html4 $*.txt || asciidoc -b html $*.txt

install: man
	for i in $(MAN) ; do \
	  subdir=`echo $$i | sed -n 's/..*\.\([0-9]\)$$/man\1/p'` ; \
	  mkdir -p $(MANDIR)/$$subdir ; \
	  $(INSTALL) $$i $(MANDIR)/$$subdir ; \
	done

clean:
	$(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html)
back to top