collapseos/tests/Makefile

18 lines
357 B
Makefile
Raw Normal View History

2020-01-01 05:32:09 +11:00
EMULDIR = ../emul
2020-01-01 05:07:05 +11:00
CFSPACK = ../tools/cfspack/cfspack
.PHONY: run
run:
2019-12-14 09:38:40 +11:00
$(MAKE) -C $(EMULDIR) zasm/zasm zasm/avra runbin/runbin shell/shell
cd unit && ./runtests.sh
cd zasm && ./runtests.sh
2019-12-14 09:38:40 +11:00
cd avra && ./runtests.sh
2019-12-13 06:32:47 +11:00
cd shell && ./runtests.sh
$(CFSPACK):
2020-01-01 05:07:05 +11:00
$(MAKE) -C ../tools/cfspack
.PHONY: cfs
cfs: $(CFSPACK)
$(CFSPACK) shell/cfsin > shell/test.cfs