Files
lts/Makefile
2025-06-21 02:11:43 +02:00

13 lines
108 B
Makefile

all:
go build
watcher:
cc -o watcher watcher.c
clean:
go clean
rm watcher
.PHONY: all clean watcher