Started on the engine proper

This commit is contained in:
2022-09-18 21:48:15 +01:00
parent 902b917d2b
commit 50aef00ec0
11 changed files with 241 additions and 79 deletions

View File

@@ -1,14 +1,18 @@
export OUTDIR = out
export LIBDIR = lib
export TOY_OUTDIR = ../$(LIBDIR)
export CORE_OUTDIR = ../$(LIBDIR)
all: $(OUTDIR) $(LIBDIR) toy
all: $(OUTDIR) $(LIBDIR) toy core
$(MAKE) -C source
cp $(LIBDIR)/*.dll $(OUTDIR)
toy: $(LIBDIR)
$(MAKE) -C Toy/source
core: $(LIBDIR)
$(MAKE) -C core
$(OUTDIR):
mkdir $(OUTDIR)