aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 98ad691a249d6b9d79e21826b2f085edd2b85b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: build

clean:
	@cabal clean > /dev/null

watch:
	@nodemon -e hs,conf --exec 'make build-and-launch'

build-and-launch:
	@(pkill leboncoin-listener || true) && (cabal run || true)

.PHONY: build
build:
	@cabal build || true