linux – makefile:缺少分隔符

前端之家收集整理的这篇文章主要介绍了linux – makefile:缺少分隔符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#kernel build system and can use its lanauge
ifneq($(KERNELRELEASE),)
 obj-m:=helloworld.o
else
 KDIR:= /lib/modules/2.6.33.3-85.fc13.i686/build
all:
 make -C $(KDIR) M=$(PWD) modules
clean:
 rm -f *.ko *.o *.mod.o *.mod.c *.symvers
endif

错误是:

makefile:2:*** missing separator . stop

但对于ifneq($(KERNELRELEASE),),如果我之前添加了一个标签,我会收到另一个错误

makefile:2: ***commands commence before first target. stop

解决方法

ifneq和(.之间必须有空格.

TAB前缀意味着它是一个shell命令,因此请确保shell命令(make和rm)以TAB开头,而所有其他行(如ifneq)不以TAB开头.

原文链接:https://www.f2er.com/linux/393445.html

猜你在找的Linux相关文章