2020-01-01 05:07:05 +11:00
|
|
|
EMULDIR = ../tools/emul
|
|
|
|
CFSPACK = ../tools/cfspack/cfspack
|
2019-05-17 23:33:20 +10:00
|
|
|
|
|
|
|
.PHONY: run
|
|
|
|
run:
|
2019-12-14 09:38:40 +11:00
|
|
|
$(MAKE) -C $(EMULDIR) zasm/zasm zasm/avra runbin/runbin shell/shell
|
2019-05-17 23:33:20 +10:00
|
|
|
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
|
2019-12-13 06:42:23 +11:00
|
|
|
|
|
|
|
$(CFSPACK):
|
2020-01-01 05:07:05 +11:00
|
|
|
$(MAKE) -C ../tools/cfspack
|
2019-12-13 06:42:23 +11:00
|
|
|
|
|
|
|
.PHONY: cfs
|
|
|
|
cfs: $(CFSPACK)
|
|
|
|
$(CFSPACK) shell/cfsin > shell/test.cfs
|