better plugin testing

This commit is contained in:
Jeff Carr 2024-12-05 19:08:53 -06:00
parent 2e25cb084d
commit 4d041b0c66
1 changed files with 7 additions and 4 deletions

View File

@ -5,13 +5,16 @@ all: build
# GO111MODULE=off go build -o build main.go # GO111MODULE=off go build -o build main.go
build: build:
GO111MODULE=off go build -C ../nocui -v -buildmode=plugin -o nocui.so @#GO111MODULE=off go build -C ../nocui -v -buildmode=plugin -o nocui.so
GO111MODULE=off go build -C ../gocui -v -buildmode=plugin -o gocui.so @#GO111MODULE=off go build -C ../gocui -v -buildmode=plugin -o gocui.so
GO111MODULE=off go build -C ../andlabs -v -buildmode=plugin -o andlabs.so make -C ../nocui
make -C ../gocui
make -C ../andlabs
make -C ../pixelgl make -C ../pixelgl
make -C ../fyne make -C ../fyne
install: install:
rm -f ../*.so
make -C ../nocui install make -C ../nocui install
make -C ../gocui install make -C ../gocui install
make -C ../andlabs install make -C ../andlabs install
@ -88,7 +91,7 @@ goget:
make -C toolkit/andlabs goget make -C toolkit/andlabs goget
clean: clean:
rm -f ../*.so rm -f ../*.so ../*/*.so
cd debian && make clean cd debian && make clean
plugins: plugins-gocui plugins-andlabs plugins: plugins-gocui plugins-andlabs