Add Makefile

This commit is contained in:
Tom Wiesing 2022-10-06 15:46:02 +02:00
parent 88a2ba4297
commit 9ada07ce70
No known key found for this signature in database

9
Makefile Normal file
View file

@ -0,0 +1,9 @@
.PHONY: clean all
all: wdcli
wdcli:
go build -o ./wdcli ./cmd/wdcli
clean:
rm wdcli