diff options
| author | Horus3 | 2015-03-11 15:42:44 +0100 |
|---|---|---|
| committer | Horus3 | 2015-03-11 15:42:44 +0100 |
| commit | 502899e07bbc23398fbcadf7a5e15624855bf877 (patch) | |
| tree | 857b0391982906954a5047a013c6be4c1d324827 /Makefile | |
| download | web2irc-502899e07bbc23398fbcadf7a5e15624855bf877.tar.gz | |
Initial commit.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f23f492 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +include env.sh + +APP=web2irc + +all: kill build run + +build: + go build -o $(APP) + +run: + ./$(APP) & + +kill: + pkill $(APP) || exit 0 + +clean: + rm ./$(APP) || exit 0 |
