Re: [RTnet-users] kernel module using rtnet

2007-08-10 Thread Jan Kiszka
Jan Birke wrote: > Hi, > > I'm stuck with some Makefile issues concerning a kernel module using > RTnet. My default Makefile for building a module looks like this: > > ifneq ($(KERNELRELEASE),) > obj-m := module.o > > else > KDIR := /lib/modules/$(shell uname -r)/build > PWD := $(shell pwd) > >

[RTnet-users] kernel module using rtnet

2007-08-10 Thread Jan Birke
Hi, I'm stuck with some Makefile issues concerning a kernel module using RTnet. My default Makefile for building a module looks like this: ifneq ($(KERNELRELEASE),) obj-m := module.o else KDIR := /lib/modules/$(shell uname -r)/build PWD := $(shell pwd) default: $(MAKE) -C $(KDIR) SU