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)

posted @ 2011-04-22 20:46  Mingxx  阅读(175)  评论(0编辑  收藏  举报