Codebase list metche / ecf9b8a Makefile
ecf9b8a

Tree @ecf9b8a (Download .tar.gz)

Makefile @ecf9b8araw · history · blame

all: doc

metche-manpage.xml: metche-manpage.sgml
	sgml2xml -xlower -xid $< > $@

metche.8: metche-manpage.xml
	db2x_xsltproc -s /usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl $<

doc: metche.8

clean:
	rm -f metche-manpage.xml

distclean: clean
	rm -f metche.8

.PHONY: all doc clean distclean