📄 makefile
字号:
# 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 + -