File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1212
1313COMPILER =./bin/troupec
1414compiler :
15- cd compiler; $(MAKE ) build
15+ cd compiler; $(MAKE ) all
1616
1717p2p-tools :
1818 cd p2p-tools; tsc
Original file line number Diff line number Diff line change 11.PHONY : test
22
3+ all : build install
4+
35build : VERBOSITY_FLAG =
46build :
57 stack $(VERBOSITY_FLAG ) build $(STACK_OPTS )
6- mkdir -p ./../bin
7- stack $(VERBOSITY_FLAG ) install $(STACK_OPTS ) --local-bin-path ./../bin/
88build/verbose :
99 $(MAKE ) $(MAKE_FLAGS ) build VERBOSITY_FLAG=" -v"
1010
11+ install : VERBOSITY_FLAG =
12+ install :
13+ $(MAKE ) $(MAKE_FLAGS ) build
14+ mkdir -p ./../bin
15+ stack $(VERBOSITY_FLAG ) install $(STACK_OPTS ) --local-bin-path ./../bin/
16+ install/verbose :
17+ $(MAKE ) $(MAKE_FLAGS ) install VERBOSITY_FLAG=" -v"
18+
1119clean :
1220 rm * .cabal
1321 stack clean --full
You can’t perform that action at this time.
0 commit comments