mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Got hooks working
This commit is contained in:
13
makefile
13
makefile
@@ -1,12 +1,17 @@
|
||||
export OUTDIR = out
|
||||
|
||||
all: $(OUTDIR)
|
||||
$(MAKE) -C source
|
||||
all: $(OUTDIR) repl
|
||||
|
||||
library: clean $(OUTDIR)
|
||||
repl: $(OUTDIR) library
|
||||
$(MAKE) -C repl
|
||||
|
||||
repl-static: $(OUTDIR) static
|
||||
$(MAKE) -C repl
|
||||
|
||||
library: $(OUTDIR)
|
||||
$(MAKE) -C source library
|
||||
|
||||
static: clean $(OUTDIR)
|
||||
static: $(OUTDIR)
|
||||
$(MAKE) -C source static
|
||||
|
||||
test: clean $(OUTDIR)
|
||||
|
||||
Reference in New Issue
Block a user