diff options
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 |
