summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHorus32015-03-11 15:42:44 +0100
committerHorus32015-03-11 15:42:44 +0100
commit502899e07bbc23398fbcadf7a5e15624855bf877 (patch)
tree857b0391982906954a5047a013c6be4c1d324827 /Makefile
downloadweb2irc-502899e07bbc23398fbcadf7a5e15624855bf877.tar.gz
Initial commit.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
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