Codebase list metche / 0a5c92e Makefile
0a5c92e

Tree @0a5c92e (Download .tar.gz)

Makefile @0a5c92eraw · 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