remove the g prefix by default

This commit is contained in:
2023-02-02 13:11:04 +01:00
parent 2cb3542d30
commit 5dbf8d6203

View File

@ -1,11 +1,11 @@
GOCMD=go
GOBUILD=$(GOCMD) build
GOBUILD=$(GOCMD) build # -compiler gccgo -gccgoflags -O3
GOCLEAN=$(GOCMD) clean
GOTEST=$(GOCMD) test
GOGET=$(GOCMD) get
BUILD_DIR=build
OBITOOLS_PREFIX:=g
OBITOOLS_PREFIX:=
PACKAGES_SRC:= $(wildcard pkg/*/*.go pkg/*/*/*.go)
PACKAGE_DIRS:=$(sort $(patsubst %/,%,$(dir $(PACKAGES_SRC))))