aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 2ab6ba2d11738bbe8854ce4167188ea19a0ae628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
all: build

start:
	@nix-shell --command "tmuxinator local"

stop:
	@tmux kill-session -t cooking

test:
	@pulp --psc-package test --src-path js

clean:
	@rm -rf node_modules
	@rm -rf .psc-package
	@stack exec cooking clean > /dev/null 2>&1 || true
	@stack clean > /dev/null

install:
	@npm install
	@psc-package install
	@stack setup

.PHONY: build
build:
	@stack build
	@stack exec cooking build

watch:
	@nodemon --watch src -e hs --exec 'make watch-command --silent'

watch-js:
	@pulp --psc-package --watch build --src-path js

watch-command:
	@(killall cooking || :) && sleep 1 && stack build && stack exec cooking watch