当前位置: 技术问答>linux和unix
makefile 出错
来源: 互联网 发布时间:2016-10-02
本文导语: 小弟刚刚学习makefile,今天写了一个试试,却出现这个错误:bash: makefile: command not found,怎么解决啊? makefile内容: eidt: test.o g++ -o test.o test.o:test.c g++ -c test.c clean: rm eidt test.o | ...
小弟刚刚学习makefile,今天写了一个试试,却出现这个错误:bash: makefile: command not found,怎么解决啊?
makefile内容:
eidt: test.o
g++ -o test.o
test.o:test.c
g++ -c test.c
clean:
rm eidt test.o
makefile内容:
eidt: test.o
g++ -o test.o
test.o:test.c
g++ -c test.c
clean:
rm eidt test.o
|
所有命令(像你的g++、rm)的前面要添加
另外g++ -oedit test.o
另外g++ -oedit test.o
|
文件命名为Makefile
命令为make
命令为make