Messages in this thread |  | | | Date | Wed, 5 Jul 2006 20:17:46 -0700 | | From | "Randy.Dunlap" <> | | Subject | Re: O_TARGET |
| |
On Thu, 6 Jul 2006 13:18:46 +1000 (EST) yh@bizmail.com.au wrote:
> Hi, > > The O_TARGET is no longer valid in kernel 2.4, what is the replacement of > following module object in kernel 2.6? > > O_TARGET := NewSerial.o > > obj-y := new_s_driver.o queue.o > obj-m := $(O_TARGET)
You just want a trivial Makefile ?
See Documentation/kbuild/makefiles.txt for more info.
Here is a working trivial example:
#################### begin ###################3 # usage: # make -C /path/to/kernel/source M=/path/to/source/TARGET/ [modules] obj-m := TARGET.o
clean-files := *.o *.ko *.mod.c ############# end ####################### M= implies modules, so modules is optional. I usually use M=$PWD (after cd to TARGET dir).
--- ~Randy - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |