All runtime tests can be run from runtime/tests Makefile

This commit is contained in:
MalikBurton
2020-07-28 18:30:20 -04:00
parent 7fc7bc0cab
commit 8abc15d266
2 changed files with 12 additions and 5 deletions

View File

@@ -3,9 +3,19 @@ all:
$(MAKE) -C dev
$(MAKE) -C hello
$(MAKE) -C nlTest
$(MAKE) -C vecadd
run:
cd simple && $(MAKE) run
cd dev && $(MAKE) run
cd hello && $(MAKE) run
cd nlTest && $(MAKE) run
cd vecadd && $(MAKE) run
clean:
$(MAKE) -C simple clean
$(MAKE) -C dev clean
$(MAKE) -C hello clean
$(MAKE) -C nlTest clean
$(MAKE) -C vecadd clean