windows下MAKE文件书写

来源:互联网 发布:淘宝网 子孙桶 编辑:程序博客网 时间:2024/05/29 03:28

一个小例子Hello.mk:


hello.exe  : hello.obj
link hello.obj
hello.obj : hello.c
cl -chello.c
clean :
 rm -rf hello.exe hello.obj


编译采用:

nmake /f hello.mk

清除采用:nmake /f hello.mk clean

原创粉丝点击