File tree 2 files changed +17
-2
lines changed
2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Ignore backup files
1
2
* ~
2
- _build
3
- build
3
+
4
+ # Ignore compiler build
5
+ /_build /
6
+
7
+ # Ignore documentation build
8
+ /documentation /build /
9
+
10
+ # Ignore package dependencies
11
+ /_packages /
12
+
13
+ # Ignore registry
14
+ /registry /
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ define constant $build-subcommand
26
26
make (<flag-option>,
27
27
names: #("unify" , "u" ),
28
28
help: "Combine libraries into a single executable." ),
29
+ make (<flag-option>,
30
+ names: #("verbose" , "v" ),
31
+ help: "Show verbose output" ),
29
32
make (<positional-option>,
30
33
names: #("libraries" ),
31
34
help: "Libraries to build." ,
@@ -67,6 +70,7 @@ define method execute-subcommand
67
70
get-option-value(subcmd, "clean" ) & "-clean" ,
68
71
get-option-value(subcmd, "link" ) & "-link" ,
69
72
get-option-value(subcmd, "unify" ) & "-unify" ,
73
+ get-option-value(subcmd, "verbose" ) & "-verbose" ,
70
74
name),
71
75
#f ),
72
76
" " );
You can’t perform that action at this time.
0 commit comments