Got hooks working

This commit is contained in:
2022-09-17 13:01:09 +01:00
parent 7eb16e51bb
commit 9c790f8cd6
12 changed files with 228 additions and 29 deletions

View File

@@ -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)