Add install target.

* GNUmakefile (install): Put in /usr/local/bin.
This commit is contained in:
Paul David 2019-07-03 21:14:14 +10:00
parent 06092427b1
commit 4d87ac4e8e

View File

@ -1,6 +1,9 @@
.PHONY: all
all: debounce
debounce: debounce.m
clang -fobjc-arc -framework Cocoa ./debounce.m -o $@
clang -fobjc-arc -framework Cocoa $^ -o $@
.PHONY: all
.PHONY: install
install: debounce
cp $< /usr/local/bin