1
0
mirror of https://gitlab.os-k.eu/os-k-team/kvisc.git synced 2023-08-25 14:05:46 +02:00
This commit is contained in:
julianb0 2019-06-23 13:15:22 +02:00
parent 98190d32fb
commit 97e52b65bb
No known key found for this signature in database
GPG Key ID: 9C7ACF0C053FB8A1

View File

@ -18,13 +18,15 @@ $(KODIR)/a.out: $(DOSK) kas
.PHONY: clean
clean:
@cd vm && make clean --no-print-directory
@rm -f $(KODIR)/a.out $(KODIR)/a.out.sym $(KODIR)/k.exe as/instrs.lst
@cd vm && make clean --no-print-directory -s verbose=no
@rm -f $(KODIR)/a.out $(KODIR)/a.sym $(KODIR)/k.exe as/instrs.lst
test: $(KODIR)/a.out
@vm/k.exe $(KODIR)/a.out $(KODIR)/a.sym
@rm -f $(KODIR)/a.out $(KODIR)/a.sym
wc: clean
@cat $(shell find -name *.[kch]) $(shell find -name *.py) | wc -l
@cat $(shell find -type f -name '*' ! -path './.git/*' | egrep '(ka|vm)/*') | wc -l
find:
@find -type f -name '*' ! -path './.git/*' | egrep '(ka|vm)/*'