首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

新手问。如何写makefile。刚学

2012-02-28 
新手问。怎么写makefile。刚学“helloworld”用Ubuntu虚拟机linux下写的makefile文件。需要几个程序啊。一个如下

新手问。怎么写makefile。刚学
“helloworld”用Ubuntu虚拟机linux下写的makefile文件。需要几个程序啊。
一个如下程序不行么
#include <stio.h>
main()
{
printf("helloworld");
}
刚学不会用

[解决办法]
比如你的文件名为 test.c
gcc -o test.o test.c
test.bin: test.c include/*
gcc -o test.bin test.c


[解决办法]

探讨
“helloworld”用Ubuntu虚拟机linux下写的makefile文件。需要几个程序啊。
一个如下程序不行么
#include <stio.h>
main()
{
printf("helloworld");
}
刚学不会用

[解决办法]
探讨

引用:
“helloworld”用Ubuntu虚拟机linux下写的makefile文件。需要几个程序啊。
一个如下程序不行么
#include <stio.h>
main()
{
printf("helloworld");
}
刚学不会用


一般是有头文件和.c文件的,当然直接那样也是可以的。
C/C++ code


hello:hel……

热点排行