当前位置:  技术问答>linux和unix

Make问题紧急求助!!!

    来源: 互联网  发布时间:2015-08-28

    本文导语:  我在FreeBSD下用make出现下列提示,请问如何解决: $ make "/usr/home/xxb/myprog/msg4/Makefile", line 9: Need an operator "/usr/home/xxb/myprog/msg4/Makefile", line 11: Need an operator "/usr/home/xxb/myprog/msg4/Makefile", line 14: Need an operator "/us...

我在FreeBSD下用make出现下列提示,请问如何解决:

$ make
"/usr/home/xxb/myprog/msg4/Makefile", line 9: Need an operator
"/usr/home/xxb/myprog/msg4/Makefile", line 11: Need an operator
"/usr/home/xxb/myprog/msg4/Makefile", line 14: Need an operator
"/usr/home/xxb/myprog/msg4/Makefile", line 16: Need an operator
"/usr/home/xxb/myprog/msg4/Makefile", line 18: Need an operator
"/usr/home/xxb/myprog/msg4/Makefile", line 20: Need an operator
"/usr/home/xxb/myprog/msg4/Makefile", line 23: Need an operator
make: fatal errors encountered -- cannot continue
$

|
在出错的行,你少了一个tab键,建议首先看看makefile如何编写的文章

欢迎访问我的个人网站 www.linuxc.net

|
# Makefile
# To build for "msgsrv.c" and "msgsend.c"
# The executable files are "msgsrv" and "msgsend"

all: msgsrv

msgsrv : msgsrv.o wrapfunc.o errlog.o
gcc msgsrv.o wrapfunc.o errlog.o -o msgsrv
msgsend : msgsend.o wrapfunc.o errlog.o
gcc msgsend.o wrapfunc.o errlog.o -o msgsend

msgsrv.o : msgsrv.c ourh.h
gcc -c msgsrv.c -o msgsrv.o
msgsend.o : msgsend.c ourh.h
gcc -c msgsend.c -o msgsend.o
wrapfunc.o : wrapfunc.c ourh.h
gcc -c wrapfunc.c -o wrapfunc.o
errlog.o : errlog.c ourh.h
gcc -c errlog.c -o errlog.o

clean :
rm -f *.o

# end Makefile

|
报错的是这个makefile吗?能指一下行号吗?

|
同意hoyt!少tab键

|
嗯,没有行开头的tab。

|
all

|
all :clean msgsrv
msgsrv : msgsrv.o wrapfunc.o errlog.o
gcc msgsrv.o wrapfunc.o errlog.o -o msgsrv
msgsend : msgsend.o wrapfunc.o errlog.o
gcc msgsend.o wrapfunc.o errlog.o -o msgsend

msgsrv.o : msgsrv.c ourh.h
gcc -c msgsrv.c -o msgsrv.o
msgsend.o : msgsend.c ourh.h
gcc -c msgsend.c -o msgsend.o
wrapfunc.o : wrapfunc.c ourh.h
gcc -c wrapfunc.c -o wrapfunc.o
errlog.o : errlog.c ourh.h
gcc -c errlog.c -o errlog.o

clean :
rm -f *.o


|
没有tab

    
 
 

您可能感兴趣的文章:

  • 求助make menuconfig出错了
  • make错误,求助。
  • make 求助
  • !求助:linux2.4.18编译make bzImage有错误
  • 紧急求助 关于在solaris 5.8下使用make和ant
  • 求助:apue文件在make的时候提示timex.h有问题,make失败
  • 求助:redhat make menuconfig错误
  • 问一个很低级的问题:怎样卸载用make;make install方法安装的软件?
  • configure make make install 新手问题...
  • make zImage和make modules等问题请教~
  • 50分的问题!make文件找不到? You don't seem to have 'make' or 'gmake' in your PATH
  • 还是Make的问题
  • make 出错的问题
  • make 死机问题
  • make bzImage时有好多问题提示,如何简化掉?
  • 菜鸟问题:如何Make
  • 新手关于make的问题
  • make menuconfig 配置问题,大家指教
  • solaris 7下make不能使用的问题
  • 真心求教一个make zImage 问题 急!!!
  • 问大家个弱问题:用make ,报错
  • linux 安装问题make: *** 没有指明目标并且找不到makefile。 停止
  • 问一个关于make的简单问题
  • 升级Linux内核在终端下输入make moveold执行失败问题?
  • linux基础问题,configure,make生成应用程序问题
  • 使用make xconfig问题?
  • 有关make命令的问题?100分
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 有关make all; make clobber; make depend; make debug 的区别?
  • 我要缩减LINUX内核,make menuconfig时把一些选项去掉,再make dep没错,但再make bzImage时却会提错,但我make menuconfig时不改变任何选现(
  • 我已经用make clean编译成功了内核但是在make moduals时候处错误,然后又make menuconfig,我还需要make zImage吗?
  • make perl 模块的时候出错,make: *** No rule to make target,帮忙看看,谢谢。
  • 如何写出兼容于BSD MAKE、GNU MAKE、SOLARIS MAKE的条件编译Makefile?
  • 在solaris8.0我装了make3.81,下载了make-3.81-sol8-sparc-local.gz,为什么不能在任何目录下输入make?
  • 怎样验证自己的make是不是GNU的make?
  • cygwin make操作,出现no rule to make target all
  • 请教 make gdb-6.4 出现 make[4]: Entering directory `/tmp/gdb-6.4/gdb/doc'
  • debian下安装bind用./configure时提示安装bind时./configure提示whether make sets $(MAKE)... no
  • 第一次写make文件,报makefile:2: *** missing separator. Stop.错,make文件只有两行
  • make kernel make gcc
  • make;make install放在script裡
  • make oldconfig 和 make defconfig有何区别?
  • 求linux下 ./configure;make;make install一系列命令的详解
  • make -f makefile 时提示 Make: Must be a separator on rules line 5. Stop. 为什么,makefile 如下
  • make menuconfig iis7站长之家
  • make menuconfig
  • make时出现错误:*** No rule to make target `<built-in>'????
  • php make test 出错 make install 卡住


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3