GOCMD=go
GOBUILD=$(GOCMD) build
GOTEST=$(GOCMD) test
GOLANGCI = golangci-lint
SRCPKG = regex
SRCPKGPATH1  = github.com/patil-ashutosh/go-regex-utility/regex/rvalidation
SRCPKGPATH2	 =  github.com/patil-ashutosh/go-regex-utility/regex/rstring
TESTPKGPATH = github.com/patil-ashutosh/go-regex-utility/testing


build:
		$(GOBUILD) ./$(SRCPKG)/...

test:
		$(GOTEST) -v ./... -coverprofile=coverage.txt

golinter:
		$(GOLANGCI) run --enable-all --exclude-use-default=false
