get_time.mak

来自「不错书对C++/C程序员很有用的大家不要错过.」· MAK 代码 · 共 19 行

MAK
19
字号
# Nmake macros for building Windows 32-Bit apps

all: Get_Time.exe

# Update the resource if necessary

Get_Time.res: Get_Time.rc Get_Time.h
    rc -r -fo Get_Time.res Get_Time.rc

# Update the object file if necessary

Get_Time.obj: Get_Time.cpp Get_Time.h
    $(cc) $(cdebug) $(cflags) $(cvars) Get_Time.cpp

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

Get_Time.exe: Get_Time.obj Get_Time.res
    $(link) $(linkdebug) $(guiflags) -out:Get_Time.exe Get_Time.obj Get_Time.res $(guilibs) advapi.lib

⌨️ 快捷键说明

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