makefile

来自「nachos test nachos 有关实验」· 代码 · 共 35 行

TXT
35
字号
# Copyright (c) 1992 The Regents of the University of California.# All rights reserved.  See copyright.h for copyright notice and limitation # of liability and disclaimer of warranty provisions.MAKE = gmakeLPR = lprall: 	cd threads; $(MAKE) depend	cd threads; $(MAKE) nachos	cd userprog; $(MAKE) depend 	cd userprog; $(MAKE) nachos 	cd vm; $(MAKE) depend	cd vm; $(MAKE) nachos 	cd filesys; $(MAKE) depend	cd filesys; $(MAKE) nachos 	cd network; $(MAKE) depend	cd network; $(MAKE) nachos 	cd bin; make all	cd test; make all# don't delete executables in "test" in case there is no cross-compilerclean:	rm -f *~ */{core,nachos,DISK,*.o,swtch.s,*~} test/{*.coff} bin/{coff2flat,coff2noff,disassemble,out}print:	/bin/csh -c "$(LPR) Makefile* */Makefile"	/bin/csh -c "$(LPR) threads/*.h threads/*.cc threads/*.s"	/bin/csh -c "$(LPR) userprog/*.h userprog/*.cc" 	/bin/csh -c "$(LPR) filesys/*.h filesys/*.cc	/bin/csh -c "$(LPR) network/*.h network/*.cc 	/bin/csh -c "$(LPR) machine/*.h machine/*.cc	/bin/csh -c "$(LPR) bin/noff.h bin/coff.h bin/coff2noff.c"	/bin/csh -c "$(LPR) test/*.h test/*.c test/*.s"

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?