其他分享
首页 > 其他分享> > make termina界面显示过程

make termina界面显示过程

作者:互联网

$ make

g++ -c example.cpp -o example.o

g++ example.o -o out

makefile写成这样就可以了

out: example.o

g++ example.o -o out

example.o: example.cpp ThreadPool.h

g++ -c example.cpp -o example.o

。。。。。。。。。。。。。。。。。。。。。。。。。。

$ make

make: 'out' is up to date.

再次执行make

。。。。。。。。。。。。。。。。。。。。

./out运行结果如下

run.........

run.........

run.........

run.........

run.........

run.........

run.........

run.........

run.........

run.........

run.........

run.........

run.........

run.........

run.........

run.........

run.........

......................................
 

标签:run,++,make,.........,界面显示,termina,example,out
来源: https://blog.csdn.net/hfut31415926/article/details/111088411