Storage cleaner daemon

This commit is contained in:
kamkow1
2025-06-21 17:50:59 +02:00
parent 8d470cbe68
commit 099f4777cd
4 changed files with 81 additions and 1 deletions

View File

@ -10,9 +10,12 @@ endif
all: lts watcher
lts: lts.go uuid.go
lts: ltscleanerd lts.go uuid.go
go build -ldflags="-X main.LISTEN_ADDR=$(LISTEN_ADDR)"
ltscleanerd: ltscleanerd.c
cc -o ltscleanerd ltscleanerd.c
watcher: watcher.c
cc -o $@ $<