virtigod/Makefile

17 lines
187 B
Makefile
Raw Normal View History

2024-10-11 17:22:31 -05:00
all:
make redomod
go build
sudo ./virtigod
goimports:
goimports -w *.go
redomod:
rm -f go.*
GO111MODULE= go mod init
GO111MODULE= go mod tidy
clean:
rm -f go.*
rm -f virtigo*