i3-blocks-go/Makefile
Simon Vieille 7ff5b31ce8
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
remove task form makefile
2022-08-30 16:03:29 +02:00

9 lines
160 B
Makefile

.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