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

📄 makefile

📁 在vxd程序中调用系统d
💻
字号:
##########################################################################
.autodepend

CCOPT=-w+ -DSTRICT

!if $d(DEBUG)
 ASMDBG=/zi
 CCDBG=/v
 LNKDBG=/v /s
!else
 ASMDBG=
 CCDBG=
 LNKDBG=
!endif

#-------------- Governing rule
all: dll16.dll

#-------------- 32-bit executable target
#-------------- 16-bit DLL target
dll16.dll: dll16.obj dll16.def
   tlink -Twd -c -C -V4.0 $(LNKDBG) @&&|
d:\bc45\lib\c0dl.obj+
dll16.obj
dll16.dll
dll16.map
import.lib+
d:\bc45\lib\crtldll.lib
dll16.def
dll16.res
|

dll16.obj: dll16.cpp
   bcc -c $(CCOPT) $(CCDBG) -tWD -ml dll16.cpp

#
# Tasm32 will only generate 32-bit debug information, so you cannot
# generate debug info in the 16-bit thunk module.
#

⌨️ 快捷键说明

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