📄 makefile
字号:
## @(#)Makefile 1.1 92/07/30 SMI## Makefile for /boot, boot blocks, and related stand-alone programs ARCH = sun3xMACH = m68kARCHDIR = ../$(ARCH)MACHDIR = ../${MACH}ARCHOBJ = conf.oARCHOPTS= "-Dprintf=(*romp->v_printf)" "-Dputchar=(*romp->v_putchar)"ARCHLIBS=## LOAD is the text segment start for booted user programs.# It is also used by srt0.s for the initial stack.#LOAD= 4000## BRELOC is the text segment start for final stage (2nd or 3rd stage) boots.# Note that this must be higher than the kernel's edata and should be# higher than the kernel's bss so the bss can be cleared.#BRELOC= 200000## BBRELOC is the text segment start for boot blocks.# Note that this must be higher than boot's edata and should be# higher than boot's bss so the bss can be cleared.#BBRELOC= 240000BOOTBLOCKS= bootpr bootxd bootxyALL= boot.$(ARCH) tpboot.$(ARCH) $(BOOTBLOCKS) installbootall: $(ALL)include ../boot/Makefile.cominstall_mdec: install bootpr $(BOOTBLKDIR)/rawboot $(RM) $(BOOTBLKDIR)/bootsd ln $(BOOTBLKDIR)/rawboot $(BOOTBLKDIR)/bootsd install bootxd $(BOOTBLKDIR) install bootxy $(BOOTBLKDIR) install -c tpboot.$(ARCH) $(STANDDIR)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -