소스 검색

tools/emul: add "make rescue" command

pull/10/head
Virgil Dupras 5 년 전
부모
커밋
207adbc2f8
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. +9
    -0
      tools/emul/Makefile

+ 9
- 0
tools/emul/Makefile 파일 보기

@@ -47,6 +47,15 @@ updatebootstrap: $(ZASMBIN)
$(ZASMBIN) < zasm/glue.asm > zasm/kernel.bin
$(ZASMBIN) < $(APPS)/zasm/glue.asm > zasm/zasm.bin

# Sometimes, when developing zasm, stuff get messed up and it's hard to unmess
# because zasm's brake-up ends up in its bootstrap bins. Sure, we can revert
# from git, but if we're in the middle of some work, it's inconvenient. As long
# as we don't diverge from scas's syntax, it can come to the recue!
.PHONY: rescue
rescue:
scas -o zasm/kernel.bin -I $(KERNEL) zasm/glue.asm
scas -o zasm/zasm.bin -I $(APPS) $(APPS)/zasm/glue.asm

.PHONY: clean
clean:
rm -f $(TARGETS) zasm/{kernel,user}.h shell/kernel.h zasm/includes.*

불러오는 중...
취소
저장