2019-05-19 11:19:41 -04:00
|
|
|
EMULDIR = ../emul
|
2019-12-12 14:42:23 -05:00
|
|
|
CFSPACK = ../cfspack/cfspack
|
2019-05-17 09:33:20 -04:00
|
|
|
|
|
|
|
.PHONY: run
|
|
|
|
run:
|
2019-12-13 17:38:40 -05:00
|
|
|
$(MAKE) -C $(EMULDIR) zasm/zasm zasm/avra runbin/runbin shell/shell
|
2019-05-17 09:33:20 -04:00
|
|
|
cd unit && ./runtests.sh
|
|
|
|
cd zasm && ./runtests.sh
|
2019-12-13 17:38:40 -05:00
|
|
|
cd avra && ./runtests.sh
|
2019-12-12 14:32:47 -05:00
|
|
|
cd shell && ./runtests.sh
|
2019-12-12 14:42:23 -05:00
|
|
|
|
|
|
|
$(CFSPACK):
|
|
|
|
$(MAKE) -C ../cfspack
|
|
|
|
|
|
|
|
.PHONY: cfs
|
|
|
|
cfs: $(CFSPACK)
|
|
|
|
$(CFSPACK) shell/cfsin > shell/test.cfs
|