0
0
mirror of https://github.com/tj/n.git synced 2024-11-22 11:37:26 +01:00
n/Makefile
Tj Holowaychuk 5644586c56 package.json
2011-01-05 06:55:44 -08:00

10 lines
119 B
Makefile

PREFIX ?= /usr/local
install: bin/n
cp $< $(PREFIX)/$<
uninstall:
rm -f $(PREFIX)/bin/n
.PHONY: install uninstall