Began working on unit tests

This commit is contained in:
2022-08-28 08:10:41 +01:00
parent 5300e2ceec
commit 71ff481f6c
3 changed files with 84 additions and 0 deletions

View File

@@ -3,6 +3,9 @@ export OUTDIR = out
all: $(OUTDIR)
$(MAKE) -C source
test: clean $(OUTDIR)
$(MAKE) -C test
$(OUTDIR):
mkdir $(OUTDIR)