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

📄 pedump.bor

📁 Windows 95 系統程式設計大奧秘书籍源码
💻 BOR
字号:
# NOTE: This program is built with the Borland PowerPack for DOS.
# This allows the program to run under DOS, as well as Win32 OS's
# If you don't have this product, simply remove "/ax" from the linker
# command line, and replace DPMI32.LIB with IMPORT32.LIB in the library list.

.AUTODEPEND

PROJ = PEDUMP

BINDIR = D:\BC45\BIN
LIBDIR = D:\BC45\LIB
INCDIR = D:\BC45\INCLUDE
CC_CFG = $(PROJ).CFG

BCC32   = $(BINDIR)\Bcc32 +$(CC_CFG) 
TLINK32 = $(BINDIR)\TLink32

OBJS =  PEDUMP.OBJ \
        COMMON.OBJ \
        OBJDUMP.OBJ \
        EXEDUMP.OBJ \
        DBGDUMP.OBJ \
        LIBDUMP.OBJ

$(PROJ).exe: $(CC_CFG) $(OBJS)
  $(TLINK32) @&&|
 -Tpe -ap -ax -c -x +
c0x32.obj+
$(OBJS)
$(PROJ).EXE

$(LIBDIR)\dpmi32.lib+
$(LIBDIR)\cw32.lib
|

.c.obj:
  $(BCC32) $<

# Compiler configuration file
$(CC_CFG) : 
   Copy &&|
-c -v -I$(INCDIR) -O2 -4 -H=$(PROJ).csm -w -4 -Etasm.exe
| $@

⌨️ 快捷键说明

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