github.com/fawick/restic@v0.1.1-0.20171126184616-c02923fbfc79/Makefile (about)

     1  .PHONY: all clean test restic
     2  
     3  all: restic
     4  
     5  restic:
     6  	go run build.go
     7  
     8  clean:
     9  	rm -f restic
    10  
    11  test:
    12  	go test ./cmd/... ./internal/...
    13