summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index afde483..b461665 100644
--- a/Makefile
+++ b/Makefile
@@ -2,11 +2,10 @@ all: plugin
ldd ../pixelgl.so
plugin:
- GO111MODULE=off go build -v -x -buildmode=plugin -o ../pixelgl.so
+ go build -v -x -buildmode=plugin -o pixelgl.so
standalone:
- GO111MODULE=off go install -v -x
- pixelgl
+ go build -v -x
check-git-clean:
@git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)