github.com/mckael/restic@v0.8.3/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