summaryrefslogtreecommitdiff
path: root/Makefile
blob: f23f4923a44b1e3ed68d701f22dfe933a4c1afd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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