diff options
| author | Jeff Carr <[email protected]> | 2025-10-29 14:15:55 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-29 14:15:55 -0500 | 
| commit | 03f1b2fe197c894bd5ef285eac0167ed987d7f02 (patch) | |
| tree | 2e52f1b9fea6f4313e41a89eded18a177148501e | |
| parent | 86aa5fb001bb873da1a491391f12b17a1a1990a0 (diff) | |
| -rw-r--r-- | Makefile | 5 | 
1 files changed, 3 insertions, 2 deletions
@@ -13,9 +13,10 @@ gocui:  		-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"  install: -	go build -buildmode=plugin -o ~/go/lib/gocui-${VERSION}.so \ +	mkdir -p ~/go/lib/plugins +	go build -buildmode=plugin -o ~/go/lib/plugins/gocui-${VERSION}.so \  		-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}" -	cd ~/go/lib && ln -f -s gocui-${VERSION}.so gocui.so +	cd ~/go/lib/plugins/ && ln -f -s gocui-${VERSION}.so gocui.so  # for testing custom golang  custom:  | 
