#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
The error is:
makefile:2:*** missing separator . stop
but for the ifneq($(KERNELRELEASE),), if I add a tab before, I get another error:
makefile:2: ***commands commence before first target. stop
There must be a space between
ifneqand(.The TAB prefix means that it is a shell command, so be sure that the shell commands (
makeandrm) begin with TAB, and all other lines such asifneqdo not begin with TAB.