maptest.mak
来自「Windows下」· MAK 代码 · 共 12 行
MAK
12 行
# Nmake macros for building Windows 32-Bit apps
!include <ntwin32.mak>
all: maptest.exe
maptest.obj: maptest.c
$(cc) $(cflags) $(cvars) $(cdebug) -I..\sys maptest.c
maptest.exe: maptest.obj
$(link) $(linkdebug) $(conflags) -out:maptest.exe maptest.obj $(conlibs)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?