kvisc/Makefile

32 lines
629 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:
@rm -f vm/a.out
@cd vm && make --no-print-directory verbose=no
kas: kpc as/k-as.py as/regs.lst
@cp vm/in/instrs.lst as
@rm -f vm/in/instrs.lst
DOSK = $(shell find ka -name '*.k')
vm/a.out: $(DOSK)
@cd ka && ../as/k-as.py dos.k 0x100000 ../vm/a.out
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
disasm: kas vm/a.out
@vm/k.exe vm/a.out -d
@mv fwprog.dis vm