makefile中的編寫內容如下: www:hello.c x.h 表示生成www這個文件需要hello.c 和 x.h這兩個文件 rm hello 表示在shell中執行make clean 時會執行rm hello 即刪除hello這個文件 ...
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這個文件