Codebase list metche / f6728f2 Makefile
f6728f2

Tree @f6728f2 (Download .tar.gz)

Makefile @f6728f2raw · history · blame

all: doc

metche.8: metche.8.markdown
	pandoc --read=markdown --write=man --output=metche.8 --standalone $<

doc: metche.8

clean:

distclean: clean
	rm -f metche.8

.PHONY: all doc clean distclean