makefile
来自「一个用在mips体系结构中的操作系统」· 代码 · 共 39 行
TXT
39 行
#!gmakeifndef SIMTOOLSSIMTOOLS = ../../../..endifinclude $(SIMTOOLS)/makedefsifeq ($(CPU),SGI)default: simoselsedefault: simos-sunendifsimos: simos-dir ($(MAKE) -f ../Makefile.ALL -C SGI SIMOS=1)simos-sun: simos-sun-dir ($(MAKE) -f ../Makefile.ALL -C SUN SIMOS=1)simos-dir: @if [ -d SGI ] ; then true; else mkdir SGI; fisimos-sun-dir: @if [ -d SUN ] ; then true; else mkdir SUN; fiifeq ($(CPU),SGI)clean: clean-sgielseclean: clean-sunendifclean-sgi: rm -rf core SGI clean-sun: rm -rf core SUN
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?