vs makefile 模板

!include <win32.mak>

all = hello.exe

objs = hello.obj

.c.obj:

    $(cc) $(cflags) $(cvars) $*.c

hello.exe:$(objs)

    $(link) $(guiflags) –out:hello.exe $(guilibs) $(objs)

原文地址:https://www.cnblogs.com/Mingxx/p/2025257.html