Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 7352927b8ea52cebf00db39cd1e89608c817bc56 authored by Alexandre Fayolle on 25 September 2009, 14:54:25 UTC, committed by Alexandre Fayolle on 25 September 2009, 14:54:25 UTC
1 parent 3587567
Raw File
Tip revision: 7352927b8ea52cebf00db39cd1e89608c817bc56 authored by Alexandre Fayolle on 25 September 2009, 14:54:25 UTC
fixed numversion and debian maintainer
Tip revision: 7352927
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