📄 makefile
字号:
# Nmake macros for building Windows 32-Bit apps
!include <ntwin32.mak>
!if "$(CPU)" == "i386"
cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
!endif
all: pdc.exe
pdc.obj: pdc.c pdc.h
$(cc) $(cflags) $(cvars) $(cdebug) pdc.c
pdc.exe: pdc.obj
$(link) $(linkdebug) $(conflags) -out:pdc.exe pdc.obj $(conlibs)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -