歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux綜合 >> 學習Linux

編寫簡單的Makefile文件,編寫makefile

編寫簡單的Makefile文件,編寫makefile

編寫簡單的Makefile文件,編寫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這個文件

http://xxxxxx/Linuxjc/1183623.html TechArticle

Copyright © Linux教程網 All Rights Reserved