Переглянути джерело

add make.clean to remoe compiled packages

tags/v0.9.0
jimzhan 9 роки тому
джерело
коміт
cb6538d32b
1 змінених файлів з 8 додано та 3 видалено
  1. +8
    -3
      Makefile

+ 8
- 3
Makefile Переглянути файл

@@ -1,15 +1,20 @@
.PHONY: all test clean build install

GOFLAGS ?= $(GOFLAGS:)
ARCH=$(shell ls $(GOPATH)/pkg | head -n 1)
PKG=$(GOPATH)/pkg/$(ARCH)/github.com/goanywhere

all: test build

build:
clean:
@find $(PKG) -name 'rex.a' -delete
@find $(PKG) -name 'rex' -type d -print0|xargs -0 rm -r

build: clean
@go get -v ./...

test: build
test:
@go test -v ./...

bench: install
@go test -run=NONE -bench=. $(GOFLAGS) ./...


Завантаження…
Відмінити
Зберегти