loadstrg.mak

来自「C/C++程序员实用大全 配套代码.rar」· MAK 代码 · 共 19 行

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

all: LoadStrg.exe

# Update the resource if necessary

show_~1.res: LoadStrg.rc LoadStrg.h
    rc -r -fo LoadStrg.res LoadStrg.rc

# Update the object file if necessary

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

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

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

⌨️ 快捷键说明

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