makefile
来自「Dialer ---- Windows TAPI sample applicat」· 代码 · 共 29 行
TXT
29 行
# 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 + =
减小字号Ctrl + -
显示快捷键?