程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> linux-簡單的makefile,我的代碼如下,怎麼make失敗呢?,在num.c找不到coun函數

linux-簡單的makefile,我的代碼如下,怎麼make失敗呢?,在num.c找不到coun函數

編輯:編程綜合問答
簡單的makefile,我的代碼如下,怎麼make失敗呢?,在num.c找不到coun函數

count.h
1 #ifndef COUNT_H
2 #define COUNT_H
3 int coun(int x);
4 #endif

count.c
1 #include“stdio.h”
2 int coun(int x)
3 {return (2*x);
}

num.c
1 #include"stdio.h"
2 #include"count.h"
3 int main()
4 {printf("%d\n",coun(1));
5 }
}
Makefile:
num : num.c count.h
make之後出錯

最佳回答:


Makefile:

num: num.c count.o

%.o: %.c
gcc -c $<

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved