Index: Makefile =================================================================== --- Makefile (revision 4301) +++ Makefile (revision 4302) @@ -1,3 +1,6 @@ +# This Makefile is a plain old hand written one; all configuration settings +# are included from ../../Makefile.conf which is scconfig generated + IN=pcb-rnd.1.mml OUT_HTML = pcb-rnd.1.html OUT_MAN1 = pcb-rnd.1 @@ -27,7 +30,25 @@ @echo "" >> $@ clean: + +distclean: rm $(OUTPUT) 2>/dev/null ; true .mml.lint: $(MML) -i copyright.mml -f lint $< + +install_: + $(MKDIR) "$(MAN1DIR)" + $(CPC) "`pwd`/pcb-rnd.1" "$(MAN1DIR)/pcb-rnd.1" + +uninstall: + $(RM) "$(MAN1DIR)/pcb-rnd.1" + +install: + make install_ CPC="$(CP)" + +linstall: + make install_ CPC="$(LN)" + +include ../../Makefile.conf +