Makefile (294B)
1 # not a makefile, but rather an install script 2 3 # On BSDs, GNU rm is sometimes named grm, so 4 # make sure you are not overriding it 5 BIN = grm 6 PREFIX = /usr/local 7 8 install: 9 mkdir -p ${PREFIX}/bin 10 cp -f grm ${PREFIX}/bin/${BIN} 11 12 uninstall: 13 rm -f ${PREFIX}/bin/${BIN} 14 15 .PHONY: install uninstall