1
0
mirror of https://github.com/restic/restic.git synced 2024-06-29 08:10:52 +02:00
restic/Makefile
2016-01-16 14:37:23 +01:00

13 lines
127 B
Makefile

.PHONY: all clean test
all: restic
restic: $(SOURCE)
go run build.go
clean:
rm -rf restic
test: $(SOURCE)
go test ./...