mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
Parallelized compilation
This commit is contained in:
6
makefile
6
makefile
@@ -12,13 +12,13 @@ repl-static: $(TOY_OUTDIR) static
|
|||||||
$(MAKE) -C repl
|
$(MAKE) -C repl
|
||||||
|
|
||||||
library: $(TOY_OUTDIR)
|
library: $(TOY_OUTDIR)
|
||||||
$(MAKE) -C source library
|
$(MAKE) -j8 -C source library
|
||||||
|
|
||||||
static: $(TOY_OUTDIR)
|
static: $(TOY_OUTDIR)
|
||||||
$(MAKE) -C source static
|
$(MAKE) -j8 -C source static
|
||||||
|
|
||||||
test: clean $(TOY_OUTDIR)
|
test: clean $(TOY_OUTDIR)
|
||||||
$(MAKE) -C test
|
$(MAKE) -j8 -C test
|
||||||
|
|
||||||
$(TOY_OUTDIR):
|
$(TOY_OUTDIR):
|
||||||
mkdir $(TOY_OUTDIR)
|
mkdir $(TOY_OUTDIR)
|
||||||
|
|||||||
Reference in New Issue
Block a user