Linux-makefile执行出错的问题
我在AIX下测试make编译一个小程序:
makefile文件:
edit: main.o
cc -o main.o
main.o: main.c
cc -c main.c
clean:
rm edit main.o
程序cc编译通过,但是在make编译下显示出错,如下:
personal>make
"makefile", line 2: make: 1254-056 Shell command not associated with a dependency: edit: main.o cc -o .
"makefile", line 4: make: 1254-056 Shell command not associated with a dependency: main.o: main.c cc -.
"makefile", line 6: make: 1254-056 Shell command not associated with a dependency: clean: rm edit main.
make: 1254-058 Fatal errors encountered -- cannot continue.
求教大神解决下,谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用的是Linux,GNU make,下面OK:
edit: main.o
cc main.c -o edit
main.o: main.c
cc -c main.c
clean:
rm edit main.o
你写的实际等价于
edit: main.o cc main.c -o edit
main.o: main.c cc -c main.c
clean: rm edit main.o