编写简单的Makefile文件

 

makefile中的编写内容如下:

www:hello.c x.h
        gcc hello.c -o hello
clean:
        rm hello

  www:hello.c  x.h 表示生成www这个文件需要hello.c 和 x.h这两个文件

     rm hello 表示在shell中执行make clean 时会执行rm  hello 即删除hello这个文件

posted @ 2016-12-29 20:31  茶飘香~  阅读(233)  评论(0编辑  收藏  举报