mirror of
https://github.com/restic/rest-server.git
synced 2025-12-06 17:15:45 -08:00
16 lines
263 B
Makefile
16 lines
263 B
Makefile
.PHONY: default install uninstall clean
|
|
|
|
default: rest-server
|
|
|
|
rest-server:
|
|
@go run build.go
|
|
|
|
install: rest-server
|
|
sudo /usr/bin/install -m 755 rest-server /usr/local/bin/rest-server
|
|
|
|
uninstall:
|
|
sudo rm -f /usr/local/bin/rest-server
|
|
|
|
clean:
|
|
rm -f rest-server
|