debounce-mac/GNUmakefile
Paul David 4d87ac4e8e Add install target.
* GNUmakefile (install): Put in /usr/local/bin.
2019-07-03 21:14:49 +10:00

10 lines
149 B
Makefile

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