0
0
mirror of https://github.com/tj/n.git synced 2024-11-22 11:37:26 +01:00
n/Makefile

10 lines
115 B
Makefile
Raw Normal View History

2011-01-05 14:50:12 +01:00
PREFIX ?= /usr/local
install: bin/n
cp $< $(PREFIX)/$<
uninstall:
rm -f $(PREFIX)/n
.PHONY: install uninstall