⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 美国加州大学操作系统课程实验平台Nachos
💻 IN
字号:
# Makefile for:#	coff2noff -- converts a normal MIPS executable into a Nachos executable## This is a GNU Makefile.  It must be used with the GNU make program.# At UW, the GNU make program is /software/gnu/bin/make.# In many other places it is known as "gmake".# You may wish to include /software/gnu/bin/ early in your command# search path, so that you will be using GNU make when you type "make".##  Use "make" to build the executable(s)#  Use "make clean" to remove .o files#  Use "make distclean" to remove all files produced by make, including#     the executable### Copyright (c) 1992-1996 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.##  This file has been modified for use at Waterloo## 2003/10/07 rewritten for usage with autoconfCC=@CC@CFLAGS= @CFLAGS@ -DRDATA @DEFS@ -I@top_dir@LD=@CC@all: coff2noff# converts a COFF file to Nachos object formatcoff2noff: coff2noff.o	$(LD) -s coff2noff.o -o coff2noffclean:	$(RM) -f coff2noff.o coff2noffdistclean: clean	$(RM) -f Makefile config.h config.status config.log *~

⌨️ 快捷键说明

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