a dead-simple Makefile

This commit is contained in:
Paul van der Walt 2016-10-31 23:38:07 +11:00
parent 73810594fd
commit 0080f019e6

6
GNUmakefile Normal file
View File

@ -0,0 +1,6 @@
all: debounce
debounce: debounce.m
clang -fobjc-arc -framework Cocoa ./debounce.m -o debounce
.PHONY: all