makefile
来自「《C/C++程序员实用大全》配套代码 [涉及平台] VC++ [作者」· 代码 · 共 21 行
TXT
21 行
# Nmake macros for building Windows 32-Bit apps
!include <ntwin32.mak>
all: client32.exe
# Update the resource if necessary
client32.res: client32.rc client32.h
rc -r -fo client32.res client32.rc
# Update the object file if necessary
client32.obj: client32.c client32.h
$(cc) $(cdebug) $(cflags) $(cvars) client32.c
# Update the executable file if necessary, and if so, add the resource back in.
client32.exe: client32.obj client32.res
$(link) $(linkdebug) $(guiflags) -out:client32.exe client32.obj client32.res $(guilibs)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?