summaryrefslogtreecommitdiff
path: root/build.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-04-04 19:36:57 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2021-04-04 19:36:57 -0400
commit2007d299916be6b079e6b97aea7c4d2835e23bd0 (patch)
treee8c1fc1000f1822e49e7b724da373fe31166f88e /build.c
parent36444b69593008f40ee2d0b47c894e37428435ae (diff)
command to reload all buffers, run make on multiple threads
Diffstat (limited to 'build.c')
-rw-r--r--build.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.c b/build.c
index cc6899d..376566f 100644
--- a/build.c
+++ b/build.c
@@ -78,7 +78,7 @@ static void build_start(Ted *ted) {
if (cargo) {
command = "cargo build";
} else if (make) {
- command = "make";
+ command = "make -j12";
}
build_start_with_command(ted, command);