include ../config.mak

all:

install:
	install -d "$(man1dir)"
	install -m 644 *.1 "$(man1dir)"

clean:
	@echo "clean up"
	@rm -f *~

