mirror of
https://github.com/tj/n.git
synced 2024-11-22 11:37:26 +01:00
10 lines
119 B
Makefile
10 lines
119 B
Makefile
|
|
PREFIX ?= /usr/local
|
|
|
|
install: bin/n
|
|
cp $< $(PREFIX)/$<
|
|
|
|
uninstall:
|
|
rm -f $(PREFIX)/bin/n
|
|
|
|
.PHONY: install uninstall |