diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..227979d --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +all: + go build + +watcher: + cc -o watcher watcher.c + +clean: + go clean + rm watcher + +.PHONY: all clean watcher +