diff options
| -rw-r--r-- | Makefile | 11 | ||||
| -rw-r--r-- | main.go | 2 |
2 files changed, 10 insertions, 3 deletions
@@ -1,7 +1,14 @@ -all: - go build -v -x +all: build ./helloworld +build: + -rm -f helloworld + go build -v -x + +stderr: build + echo "writing to /tmp/helloworld.stderr" + ./helloworld >/tmp/helloworld.stderr 2>&1 + push: git add --all git commit -a @@ -11,7 +11,7 @@ var myGui *gui.Node // This is the beginning of the binary tree of widgets // go will sit here until the window exits func main() { myGui = gui.New().Default() - myGui.LoadToolkit("nocui") + // myGui.LoadToolkit("nocui") helloworld() gui.Watchdog() |
