threads.mak
来自「这是一些例程」· MAK 代码 · 共 21 行
MAK
21 行
# This is the make file for use with the Win32 SDK tools.
!include <ntwin32.mak>
threads.exe : threads.obj asmthred.obj
$(link) @<<
$(ldebug)
$(guilflags)
$(guilibs)
threads.obj
asmthred.obj
-out:$@
<<
threads.obj : threads.c
$(cc) $(cdebug) $(cflags) $(cvars) threads.c
asmthred.obj : asmthred.asm
ml /c /Zi /coff asmthred.asm
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?