Compare commits

...

7 Commits

Author SHA1 Message Date
Jeff Carr d5a16ffdd5 also clean that dir 2025-01-20 07:59:25 -06:00
Jeff Carr c719fdc9c1 clean local ~/go/lib/go-gui/ 2024-12-16 00:22:00 -06:00
Jeff Carr 7560755d03 minor 2024-12-07 16:50:52 -06:00
Jeff Carr cc9ad89689 minor 2024-12-06 01:51:25 -06:00
Jeff Carr 4d041b0c66 better plugin testing 2024-12-05 19:08:53 -06:00
Jeff Carr 2e25cb084d 'make install' vs 'make build' 2024-12-05 17:43:28 -06:00
Jeff Carr e488da43ba fyne & pixelgl build again 2024-12-04 02:26:37 -06:00
1 changed files with 24 additions and 7 deletions

View File

@ -5,11 +5,22 @@ all: build
# GO111MODULE=off go build -o build main.go
build:
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 ../andlabs -v -buildmode=plugin -o andlabs.so
GO111MODULE=off go build -C ../pixelgl -v -buildmode=plugin -o pixelgl.so
GO111MODULE=off go build -C ../fyne -v -buildmode=plugin -o fyne.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
make -C ../nocui
make -C ../gocui
make -C ../andlabs
make -C ../pixelgl
make -C ../fyne
ls -l ../*/*.so
install:
rm -f ../*.so
make -C ../nocui install
make -C ../gocui install
make -C ../andlabs install
make -C ../pixelgl install
make -C ../fyne install
goimports:
goimports -w *.go
@ -81,8 +92,14 @@ goget:
make -C toolkit/andlabs goget
clean:
rm -f ../*.so
cd debian && make clean
rm -f ../*.so ../*/*.so
rm -rf ~/go/lib/go-gui/*
rm -rf ~/go/lib/*.so
make -C ../nocui clean
make -C ../gocui clean
make -C ../andlabs clean
make -C ../pixelgl clean
make -C ../fyne clean
plugins: plugins-gocui plugins-andlabs