国产91精品在线播放,欧美精品在线免费,日韩中文字幕在线有码视频网

上海校區切換校區
圖標

學習文章

當前位置:首頁 > >學習文章 > >

{紅帽 RHCE} Makefile

發布時間: 2018-05-16 19:45:09

[root@server0 maketest2]# cat foo.c addnum.c

#include<stdio.h>

extern int addnumbers(int a,int b);

int main()

{

   int sum;

   int x=5;

   int y=8;

   sum=addnumbers(x,y);

   printf("sum of %d and %d is %d\n",x,y,sum);

   return 0;

}

#include<stdio.h>

int addnumbers(int a,int b)

{

   int sum;

   sum=a+b;

   return sum;

}

[root@server0 maketest2]# gcc -o foo foo.c addnum.c

[root@server0 maketest2]# ll

-rw-r--r--. 1 root root   83 Apr 12 03:06 addnum.c

-rwxr-xr-x. 1 root root 8579 Apr 12 03:14 foo

-rw-r--r--. 1 root root  177 Apr 12 03:13 foo.c

[root@server0 maketest2]# ./foo

sum of 5 and 8 is 13



[root@server0 maketest2]# cat Makefile

hello: foo.o addnum.o

   gcc -o hello foo.o addnum.o


foo.o: foo.c

   gcc -c foo.c


addnum.o: addnum.c

   gcc -c addnum.c


clean:

   rm -f *.o hello


[root@server0 maketest2]# make

gcc -c foo.c

gcc -c addnum.c

gcc -o hello foo.o addnum.o


[root@server0 maketest2]# ./hello

sum of 5 and 8 is 13

上一篇: {思科 CCNA-RS}EIGRP的簡介

下一篇: {紅帽RHCE}CentOS7 搭建LVS+keepalived負載均衡(二)

在線咨詢 ×

您好,請問有什么可以幫您?我們將竭誠提供最優質服務!

<menuitem id="vlare"></menuitem>

    <ul id="vlare"><rp id="vlare"><optgroup id="vlare"></optgroup></rp></ul>

  • 主站蜘蛛池模板: 望谟县| 大安市| 呼图壁县| 贡觉县| 平舆县| 灵寿县| 瑞安市| 和平县| 蓬安县| 江油市| 博罗县| 梁山县| 沛县| 兖州市| 手机| 廉江市| 喀喇沁旗| 务川| 江川县| 寿宁县| 浑源县| 重庆市| 伊金霍洛旗| 商都县| 德化县| 肃北| 卓尼县| 无棣县| 大关县| 永登县| 鄂尔多斯市| 泸州市| 宜良县| 英德市| 六盘水市| 高安市| 汶川县| 萍乡市| 类乌齐县| 明光市| 阳西县|