Browse Source

LICENSE and README

master
junikimm717 3 years ago
parent
commit
d826bad339
  1. 2
      .gitignore
  2. 14
      Makefile
  3. 15
      README.md

2
.gitignore

@ -0,0 +1,2 @@
.DS_Store
sendfile

14
Makefile

@ -0,0 +1,14 @@
PREFIX=/usr/local/bin
sendfile:
go build
install: sendfile
cp ./sendfile $(PREFIX)/sendfile
.PHONY: clean
clean:
rm -rf ./sendfile
uninstall:
rm -rf $(PREFIX)/sendfile

15
README.md

@ -0,0 +1,15 @@
# Sendfile
Dead-simple HTTP Server for sending one file.
# Building the binary
```bash
make
```
# installing
```bash
make clean install
```
Loading…
Cancel
Save