kvisc/Makefile

33 lines
823 B
Makefile
Raw Normal View History

2019-05-15 20:06:45 +02:00
# The OS/K Team licenses this file to you under the MIT license.
# See the LICENSE file in the project root for more information.
2019-05-15 19:26:40 +02:00
2019-06-21 12:13:09 +02:00
KODIR=ka/obj
2019-05-19 19:54:29 +02:00
all: kas
2019-05-15 21:47:08 +02:00
2019-06-21 22:19:55 +02:00
kpc: vm/Makefile
2019-06-21 19:38:31 +02:00
@cd vm && make --no-print-directory -s verbose=yes
2019-05-16 19:49:51 +02:00
2019-06-16 21:17:56 +02:00
kas: kpc as/regs.lst as/k-as.py
2019-06-05 12:53:09 +02:00
@cp vm/in/instrs.lst as
2019-05-15 19:26:40 +02:00
2019-06-05 12:53:09 +02:00
DOSK = $(shell find ka -name '*.k')
2019-05-15 19:26:40 +02:00
2019-06-21 12:13:09 +02:00
$(KODIR)/a.out: $(DOSK) kas
@as/k-as.py ka/dos.k 0x100000 $(KODIR)/a.out $(KODIR)/a.sym
2019-05-30 18:31:50 +02:00
2019-06-13 22:20:35 +02:00
.PHONY: clean
clean:
2019-06-23 13:15:22 +02:00
@cd vm && make clean --no-print-directory -s verbose=no
@rm -f $(KODIR)/a.out $(KODIR)/a.sym $(KODIR)/k.exe as/instrs.lst
2019-06-13 22:20:35 +02:00
2019-06-21 12:13:09 +02:00
test: $(KODIR)/a.out
@vm/k.exe $(KODIR)/a.out $(KODIR)/a.sym
@rm -f $(KODIR)/a.out $(KODIR)/a.sym
2019-06-21 22:19:55 +02:00
2019-06-19 13:47:10 +02:00
wc: clean
2019-06-23 13:15:22 +02:00
@cat $(shell find -type f -name '*' ! -path './.git/*' | egrep '(ka|vm)/*') | wc -l
2019-06-15 13:42:30 +02:00
2019-06-23 13:15:22 +02:00
find:
@find -type f -name '*' ! -path './.git/*' | egrep '(ka|vm)/*'