当前位置: 技术问答>linux和unix
makefile 简单问题
来源: 互联网 发布时间:2015-09-14
本文导语: 我写了一个makefile 如下: test2:test.cpp g++ test.cpp -o test2 然后我执行 make test2 体统提示:makefile:2: *** missing separator. Stop. 谢谢各位指教啊! | 在g++ test.cpp -o tes...
我写了一个makefile 如下:
test2:test.cpp
g++ test.cpp -o test2
然后我执行 make test2
体统提示:makefile:2: *** missing separator. Stop.
谢谢各位指教啊!
test2:test.cpp
g++ test.cpp -o test2
然后我执行 make test2
体统提示:makefile:2: *** missing separator. Stop.
谢谢各位指教啊!
|
在g++ test.cpp -o test2 前加一个tab键
|
这是因为这个makefile是不可执行的
即用户没有执行权限
在shell中makefile所在目录输入
chmod 0777 makefile
然后make test2即可
即用户没有执行权限
在shell中makefile所在目录输入
chmod 0777 makefile
然后make test2即可