gadgetwindow/Makefile

24 lines
318 B
Makefile
Raw Normal View History

all: build
reset
./basicwindow
2024-01-16 16:37:43 -06:00
build:
-rm -f basicwindow
go build -v -x
stderr: build
echo "writing to /tmp/helloworld.stderr"
./helloworld >/tmp/helloworld.stderr 2>&1
2024-01-16 16:37:43 -06:00
push:
git add --all
git commit -a
git push
redomod:
rm -f go.*
goimports -w *.go
2024-01-16 16:37:43 -06:00
GO111MODULE= go mod init
GO111MODULE= go mod tidy