summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-04 00:36:06 -0600
committerJeff Carr <[email protected]>2024-12-04 00:36:06 -0600
commit66c4285902860ada66afebacc8efdf98d827f890 (patch)
tree0833b108232da5bece422a89161d7a53e5c1e9ed /Makefile
parent8540387ab7feea5f3760f5361790ca3fd72392f8 (diff)
update. still doesn't build with go-clonev0.21.1
Signed-off-by: Jeff Carr <[email protected]>
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)