mirror of
https://github.com/restic/restic.git
synced 2024-12-26 01:37:12 +00:00
12 lines
143 B
Makefile
12 lines
143 B
Makefile
.PHONY: all clean test
|
|
|
|
all: restic
|
|
|
|
restic: $(SOURCE)
|
|
go run build.go
|
|
|
|
clean:
|
|
rm -rf restic
|
|
|
|
test: $(SOURCE)
|
|
go run run_tests.go /dev/null
|