Add a Makefile

This commit is contained in:
kamkow1
2025-06-21 02:11:43 +02:00
parent a0fb9657eb
commit 05c0eaebaa

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
all:
go build
watcher:
cc -o watcher watcher.c
clean:
go clean
rm watcher
.PHONY: all clean watcher