mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 03:32:51 -06:00
runtime/c/setup.sh: use make -j to speed up compilation
The configuration script takes significantly longer to run than the compilation of all the C code, which is a hint that is in need of a major simplification.
This commit is contained in:
@@ -11,7 +11,7 @@ case "$command" in
|
|||||||
./configure "$@"
|
./configure "$@"
|
||||||
;;
|
;;
|
||||||
build)
|
build)
|
||||||
make "$@"
|
make -j "$@"
|
||||||
;;
|
;;
|
||||||
copy|install)
|
copy|install)
|
||||||
make install "$@"
|
make install "$@"
|
||||||
|
|||||||
Reference in New Issue
Block a user