blob: 678b2f2d8996d4837760955ee5b68c77bb4ab0b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
install_root := $(shell stack path --local-install-root)
progname = shelves
exe = $(install_root)/bin/$(progname)
.PHONY: $(exe) default
$(progname): $(exe)
ln -sf $^ $@
$(exe):
stack build
|