2024-01-17 03:02:12 -06:00
|
|
|
all: build
|
2024-01-18 21:20:07 -06:00
|
|
|
reset
|
2024-01-17 20:26:07 -06:00
|
|
|
./basicwindow
|
2024-01-16 16:37:43 -06:00
|
|
|
|
2024-01-17 03:02:12 -06:00
|
|
|
build:
|
2024-01-17 20:26:07 -06:00
|
|
|
-rm -f basicwindow
|
2024-01-17 03:02:12 -06:00
|
|
|
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.*
|
2024-01-18 19:08:33 -06:00
|
|
|
goimports -w *.go
|
2024-01-16 16:37:43 -06:00
|
|
|
GO111MODULE= go mod init
|
|
|
|
GO111MODULE= go mod tidy
|
|
|
|
|