makefile
来自「<Win2k系统编程>源码.次数为国人自编,内容丰富,还是不错的.」· 代码 · 共 38 行
TXT
38 行
# Nmake macros for building Windows 32-Bit apps
TARGETOS=WINNT
!include <ntwin32.mak>
all: uconvert.exe uconvert.hlp
# Update the resource if necessary
uconvert.res: uconvert.rc uconvert.h
rc -r -fo uconvert.res uconvert.rc
# Update the online help file if necessary.
uconvert.hlp: uconvert.hpj uconvert.rtf
if exist uconvert.PH del uconvert.PH
$(hc) uconvert.hpj
# Update the object files if necessary
uconvert.obj: uconvert.c uconvert.h
$(cc) $(cdebug) $(cflags) $(cvars) uconvert.c
install.obj: install.c install.h
$(cc) $(cdebug) $(cflags) $(cvars) install.c
dialogs.obj: dialogs.c uconvert.h
$(cc) $(cdebug) $(cflags) $(cvars) dialogs.c
# Update the executable file if necessary
uconvert.exe: uconvert.obj install.obj dialogs.obj uconvert.res
$(link) $(linkdebug) $(guiflags) -out:uconvert.exe \
uconvert.obj install.obj dialogs.obj uconvert.res $(guilibs) advapi32.lib shell32.lib
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?