dead simple file sharing thru a local network
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
176 B

  1. PREFIX=/usr/local/bin
  2. sendfile:
  3. go build
  4. install: sendfile
  5. cp ./sendfile $(PREFIX)/sendfile
  6. .PHONY: clean
  7. clean:
  8. rm -rf ./sendfile
  9. uninstall:
  10. rm -rf $(PREFIX)/sendfile