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

📄 makefile

📁 Dialer ---- Windows TAPI sample application created as an illustration of the usage of Windows TAPI
💻
字号:
# Define NODEBUG to build DIALER without debugging information.

TARGETOS=WINNT

!include <Win32.Mak>

#unicode = -DNODEBUG

cflags=$(cflags) -DWIN32_LEAN_AND_MEAN

all: dialer.exe

# Update the resource if necessary

dialer.res: dialer.rc resource.h
    $(rc) $(rcvars) -r dialer.rc

# Update the object files if necessary

dialer.obj: dialer.c resource.h dialer.h
    $(cc) $(cdebug) $(cflags) $(cvars) $(unicode) dialer.c

# Update the executable file if necessary, and if so, add the resource back in.

dialer.exe: dialer.obj  dialer.res
    $(link) $(linkdebug)  $(guiflags) -out:dialer.exe\
    dialer.obj dialer.res\
    version.lib tapi32.lib $(guilibsmt)

⌨️ 快捷键说明

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