makefile.in
来自「美国加州大学操作系统课程实验平台Nachos」· IN 代码 · 共 41 行
IN
41 行
# 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 + =
减小字号Ctrl + -
显示快捷键?