当前位置:软件学习 > 其它软件 >>

第一个makefile

     网络程序设计,上周的上周就讲makefile了,由于一直在复习考试,就木有搞工程实践,今天把makefile弄了.
 
创建一个print.h文件, 并声明print()函数
[cpp]  
#ifndef _PRINT_H  
  
#define _PRINT_H  
  
#include<stdio.h>  
  
void print();  
  
#endif  
[cpp]  
#include"print.h"  
  
void print()  
{  
    printf("My first makefile program\n");  
}  
 
 
main.c源文件
[cpp]  
#include"print.h"  
  
int main()  
{  
    print();  
    return 0;  
}  
 
输入 www.zzzyk.com
ustcqi@ubuntu:~/workplace/makefile$ make
gcc -c main.c
gcc -c print.c
gcc -o main main.o print.o
ustcqi@ubuntu:~/workplace/makefile$ ./main
My first makefile program
 
 
补充:软件开发 , 其他 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,