文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>我的第一个makefile

我的第一个makefile

时间:2007-06-29  来源:huayd

纯粹实验用,给自己看的,呵呵
defs.h
#include<stdio.h>
void print_hello(void);

hello.c
#include"defs.h"
void print_hello(void)
{
        printf("hello linux\n");
}

main.c
#include"defs.h"
int main(void)
{
        print_hello();
        return 1;
}

makefile
test : main.o hello.o
        cc -o test main.o hello.o

main.o : main.c defs.h
        cc -c main.c

hello.o : hello.c defs.h
        cc -c hello.c

clean :
        rm test *.o
相关阅读 更多 +
排行榜 更多 +
一剑灭天

一剑灭天

角色扮演 下载
戮仙战纪

戮仙战纪

角色扮演 下载
头号海贼王手机版

头号海贼王手机版

棋牌卡牌 下载