add static compilation to Makefile
parent
6b3f54692a
commit
dc55ce4764
3
Makefile
3
Makefile
|
@ -94,6 +94,9 @@ $(TMPVC)/.git/config:
|
||||||
selfcompile:
|
selfcompile:
|
||||||
./v -cg -o v v.v
|
./v -cg -o v v.v
|
||||||
|
|
||||||
|
selfcompile-static:
|
||||||
|
./v -cg -cflags '--static' -o v-static v.v
|
||||||
|
|
||||||
modules: module_builtin module_strings module_strconv
|
modules: module_builtin module_strings module_strconv
|
||||||
module_builtin:
|
module_builtin:
|
||||||
#./v build module vlib/builtin > /dev/null
|
#./v build module vlib/builtin > /dev/null
|
||||||
|
|
Loading…
Reference in New Issue