mirror of https://github.com/q191201771/lal.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
196 B
Makefile
19 lines
196 B
Makefile
5 years ago
|
.PHONY: build
|
||
|
build: deps
|
||
|
./build.sh
|
||
|
|
||
|
.PHONY: test
|
||
|
test: deps
|
||
|
./test.sh
|
||
|
|
||
|
.PHONY: deps
|
||
|
deps:
|
||
|
go get -t -v ./...
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -rf ./bin ./release ./logs
|
||
|
|
||
|
.PHONY: all
|
||
|
all: build test
|