makefile

来自「<Win2k系统编程>源码.次数为国人自编,内容丰富,还是不错的.」· 代码 · 共 16 行

TXT
16
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?