我们首先创建一个text.c文件
然后vim打开text.c文件进行编辑,编辑完后退出
创建一个makefile文件,并vim打开进行编写
并使用make指令进行操作
上面的文件 text ,它依赖 text.o
text.o , 它依赖 text.s
text.s , 它依赖 text.i
text.i, 它依赖 text.c
gcc text.* -option text.* ,就是与之对应的依赖关系
make是如何工作的,在默认的方式下,也就是我们只输入make命令。那么,
‘\r’是回车,前者使光标到行首,(carriage return)’\n’是换行,后者使光标下移一格。
老式enter键
1、什么现象?
#include
int main()
{
printf("hello Makefile!\n");
sleep(3);
return 0;
}
2、什么现象?
#include
int main()
{
printf("hello Makefile!");
sleep(3);
return 0;
}
3、什么现象?
#include
int main()
{
printf("hello Makefile!");
fflush(stdout);
sleep(3);
return 0;
}
1、版本一
#include
#include
#include
#include
const char* lable="|/-\\";
int main()
{
char buffer[NUM];
memset(buffer, '\0', sizeof(buffer));
int cnt = 0;
int n = strlen(lable);
buffer[0] = Head;
while(cnt <= 100)
{
printf("[%-100s][%3d%%][%c]\r", buffer, cnt, lable[cnt%n]);
fflush(stdout);
buffer[cnt++] = '=';
if(cnt < 100) buffer[cnt] = '>';
usleep(50000);
}
printf("\n");
}
2、版本二 ,跟下载速度牵连
#include
#include
#include
#include
#include
typedef void (*callback_t)(double);
define max 103
define size 1024*1024*1024
const char* lable="|/-\\";
char buffer[max]={0};
void process_flush(double rate)
{
static int cnt = 0;
int n = strlen(lable);
if(rate <= 1.0) buffer[0] = '>';
printf("[%-100s][%.1f%%][%c]\r", buffer, rate, lable[cnt%n]);
fflush(stdout);
buffer[(int)rate] = '=';
if((int)rate+1 < 100) buffer[(int)(rate+1)] = '>';
if(rate>=100.0) printf("\n");
cnt++;
cnt%=n;
}
void download()
{
srand(time(NULL)^1023);
int total=size;
while(total)
{
int one=rand()%(1024*1024);
total-=one;
if(total<=0) total=0;
int download=size-total;
double rate = (download*1.0/(size))*100.0;
process_flush(rate);
}
}
int main()
{
download();
}