mirror of
https://gitlab.os-k.eu/os-k-team/kvisc.git
synced 2023-08-25 14:05:46 +02:00
32 lines
622 B
Makefile
32 lines
622 B
Makefile
# The OS/K Team licenses this file to you under the MIT license.
|
|
# See the LICENSE file in the project root for more information.
|
|
|
|
all: kas
|
|
|
|
kpc:
|
|
@cd vm && make --no-print-directory verbose=no
|
|
|
|
kas: kpc as/k-as.py as/regs.lst
|
|
@cp vm/in/instrs.lst as
|
|
|
|
DOSK = $(shell find ka -name '*.k')
|
|
|
|
vm/a.out: $(DOSK)
|
|
@cd ka && ../as/k-as.py dos.k 0x100000 ../vm/a.out
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@cd vm && make clean
|
|
@rm -f vm/a.out vm/k.exe vm/stdout.txt as/instrs.lst
|
|
|
|
test: kas vm/a.out
|
|
@vm/k.exe vm/a.out > vm/stdout.txt
|
|
@rm -f vm/a.out
|
|
@echo "output:"
|
|
@echo ">>>>>>>>"
|
|
@cat -v vm/stdout.txt
|
|
@echo
|
|
@echo "<<<<<<<<"
|
|
@echo
|
|
|