檔案解壓 makefile用法

2021-10-05 05:02:44 字數 530 閱讀 9258

tar.gz

tar xvzf 檔名 -c 指定目錄(解壓到指定目錄)

目標:依賴

命令(注意不是隨便的空格,而是table)

列如:test:test.c

gcc test.c -o test

$()用法如下:

$^:所以依賴檔案

$《第乙個依賴檔案

$@:目標

makefile中「#」字元後的內容被視作注釋。

列如:hello: hello.c

@gcc hello.c –o hello

@:取消回顯 (演示)

make命令預設在當前目錄下尋找名字為 makefile或者makefile的工程檔案,當名字

不為這兩者之一時,可以使用如下方法指指定 :make –f 檔名

%.o:%.c

gcc -c–o $@ $<

工程管理檔案makefile用法

src 所有的.c檔案 include 所有的.件 lib 所有的庫檔案 bin 編譯之後的可執行檔案 makefile 裡面有一套可以編譯整個專案的規則。如果沒有makefile,使用者gcc編譯應該每次都要輸入 gcc main.c fun.c o main 學習書寫makefile之後,就可以...

makefile用法入門

tool.c和main.c聯合編譯 注意tool.c中不能以main函式開頭,只能是其他的任意函式,同時需要包含tool.c函式宣告的標頭檔案tool.h int find max int arr,int n include tool.h intfind max int arr,int n retu...

解壓unzip用法

1 把檔案解壓到當前目錄下 unzip test.zip2 如果要把檔案解壓到指定的目錄下,需要用到 d引數。unzip d temp test.zip3 解壓的時候,有時候不想覆蓋已經存在的檔案,那麼可以加上 n引數 unzip n test.zip unzip n d temp test.zip...