summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-29 03:06:17 -0600
committerJeff Carr <[email protected]>2024-02-29 03:06:17 -0600
commit3539402c3718dd542b6bf2ff29c348bb260475ae (patch)
treec6399470c2f5b7628c01a1fc183c4e1d74a0f659 /Makefile
parent5cc617335d449c44032907414169ea0c2e8af216 (diff)
opens multiple windows in demo modev0.0.1
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 44da83c..3ecdb10 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,10 @@ all: plugin
plugin:
go build -v -x -buildmode=plugin -o ../fyne.so
+non-plugin:
+ go build -v -x
+ ./fyne
+
check-git-clean:
@git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)