⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 <Win2k系统编程>源码.次数为国人自编,内容丰富,还是不错的.
💻
字号:
# Some nmake macros for Win32 apps development

!include <ntwin32.mak>


# This line allows NMAKE to work as well

all: spy.exe

# Update the object file if necessary

spy.obj: spy.c spy.h spyfuncs.h 
    $(cc) $(cflags) $(cvars) $(cdebug) spy.c

hook.obj: hook.c spy.h spyfuncs.h 
    $(cc) $(cflags) $(cvars) $(cdebug) hook.c

dialogs.obj: dialogs.c spy.h spyfuncs.h
    $(cc) $(cflags) $(cvars) $(cdebug) dialogs.c

misc.obj: misc.c spy.h spyfuncs.h
    $(cc) $(cflags) $(cvars) $(cdebug) misc.c

wm.obj: wm.c spy.h spyfuncs.h 
    $(cc) $(cflags) $(cvars) $(cdebug) wm.c

wprintf.obj: wprintf.c spy.h spyfuncs.h 
    $(cc) $(cflags) $(cvars) $(cdebug) wprintf.c

# Update the resources if necessary

spy.res: spy.rc spy.h spyfuncs.h
    $(rc) $(rcflags) $(rcvars)  spy.rc

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

spy.exe: spy.obj hook.obj dialogs.obj misc.obj wm.obj wprintf.obj spy.res
    $(link) $(linkdebug) $(guiflags) -out:spy.exe   \
    spy.obj hook.obj dialogs.obj misc.obj wm.obj \
    wprintf.obj spy.res ..\dll\hook.lib $(guilibs) advapi32.lib
!IF ("$(TARGETLANG)" == "LANG_JAPANESE") && ("$(OS)" == "Windows_NT")
    rlman -p 932 -n 17 1 -a $*.exe $*.tok $*.exe
!ENDIF

⌨️ 快捷键说明

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