We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f07fa0 commit 3155893Copy full SHA for 3155893
compiler/Makefile
@@ -1,9 +1,12 @@
1
.PHONY: test
2
3
+build: VERBOSITY_FLAG =
4
build:
- stack -v build $(STACK_OPTS)
5
+ stack $(VERBOSITY_FLAG) build $(STACK_OPTS)
6
mkdir -p ./../bin
- stack -v install $(STACK_OPTS) --local-bin-path ./../bin/
7
+ stack $(VERBOSITY_FLAG) install $(STACK_OPTS) --local-bin-path ./../bin/
8
+build/verbose:
9
+ $(MAKE) $(MAKE_FLAGS) build VERBOSITY_FLAG="-v"
10
11
clean:
12
rm *.cabal
0 commit comments