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

10 lines
119 B
Makefile
Raw Normal View History

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