makefile : missing separator

后端 未结 4 1875
礼貌的吻别
礼貌的吻别 2021-02-14 14:05
#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=         


        
4条回答
  •  一个人的身影
    2021-02-14 14:47

    You're missing the second part of your conditional ifneq($(KERNELRELEASE),) needs to have something after the comma, like "2.6.17" (for example).

提交回复
热议问题