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