Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-19 06:14:20 -06:00
parent 99de2790d5
commit 5fd46dd44d
1 changed files with 7 additions and 2 deletions

View File

@ -3,12 +3,17 @@ all: build
./basicwindow
build:
ifeq ($(GO111MODULE),)
echo no. you must use GO111MODULE here
false
else
-rm -f basicwindow
go build -v -x
endif
stderr: build
echo "writing to /tmp/helloworld.stderr"
./helloworld >/tmp/helloworld.stderr 2>&1
echo "writing to /tmp/basicwindow.stderr"
./basicwindow >/tmp/basicwindow.stderr 2>&1
push:
git add --all