summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Cady <d@cryptonomic.net>2022-09-15 09:51:41 -0400
committerAndrew Cady <d@cryptonomic.net>2022-09-15 09:51:41 -0400
commita8fbe05b46a8b34e5e0e329eb52f974eecd30db6 (patch)
tree06cd6d6dc57b3924e7d2ff24e2e5ef5c398aace8 /Makefile
parent696fb9f7cb692797cc085bba9088eaf571cbc000 (diff)
"make run" target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9fca18b..cfb1ff6 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,11 @@ all:
2 stack build 2 stack build
3 ln -sfT $$(stack path --local-install-root)/bin ./bin 3 ln -sfT $$(stack path --local-install-root)/bin ./bin
4 4
5.PHONY: all run install install-dev-tools
6
7run: all
8 ./bin/countdown
9
5install: 10install:
6 stack install 11 stack install
7 12