From 502899e07bbc23398fbcadf7a5e15624855bf877 Mon Sep 17 00:00:00 2001 From: Horus3 Date: Wed, 11 Mar 2015 15:42:44 +0100 Subject: Initial commit. --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3