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