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

📄 makefile

📁 操作系统源代码
💻
字号:
# Makefile for dis# @(#) Makefile, Ver. 2.1 created 00:00:00 87/09/01# Makefile for 8088 symbolic disassembler# Copyright (C) 1987 G. M. Harding, all rights reserved.# Permission to copy and redistribute is hereby granted,# provided full source code, with all copyright notices,# accompanies any redistribution.# This Makefile  automates the process of compiling and linking# a symbolic  object-file  disassembler  program  for the Intel# 8088 CPU. Relatively machine-independent code is contained in# the file dismain.c; lookup tables and handler routines, which# are by their nature  machine-specific,  are  contained in two# files named distabs.c and dishand.c,  respectively.  (A third# machine-specific file, disfp.c, contains handler routines for# floating-point  coprocessor opcodes.)  A header file,  dis.h,# attempts to mediate between the machine-specific and machine-# independent portions of the code. An attempt has been made to# isolate machine  dependencies and to deal with them in fairly# straightforward ways. Thus, it should be possible to target a# different CPU by rewriting the handler  routines and changing# the initialization  data in the lookup tables.  It should not# be necessary to alter the formats of the tables.CFLAGS =-O -woOBJ = disrel.o dismain.o distabs.o dishand.o disfp.oall:	dis88dis88:	$(OBJ)	cc -i -o dis88 $(OBJ)	install -S 5kw dis88install:	/usr/bin/dis88/usr/bin/dis88:	dis88	install -cs -o bin dis88 $@disrel.o:	disrel.cdismain.o:	dismain.c dis.hdistabs.o:	distabs.c dis.hdishand.o:	dishand.c dis.hdisfp.o:	disfp.c dis.hclean:		rm -f *.bak *.o core dis88

⌨️ 快捷键说明

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