i3-blocks-go/Makefile

9 lines
160 B
Makefile
Raw Normal View History

2022-08-28 14:59:15 +02:00
.ONESHELL:
all:
for i in blocks/*; do
go build -ldflags '-s -w' -v -o "build/$$(basename "$$i")" "$$i/main.go"
done
clean:
rm build/* 2>/dev/null || true