On 5/24/07, ajay parashar <[EMAIL PROTECTED]> wrote:
Hi,
I am using fedora 6. i write a simple hello world kernel module
i write following makefile for building this module.
###############################
obj-m+=hello.o
all:
make -c /lib/modules/ $(shell uname -r)/ build M=$(PWD) modules
clean:
make -c /lib/modules/ $(shell uname -r)/ build M=$(PWD) clean
##############################
The correct flag is -C, not -c. In make --help you can see:
-C DIRECTORY, --directory=DIRECTORY
Change to DIRECTORY before doing anything.
which is what you want (ie: change to the kernel's build directory).
Also make sure you don't actually have any spaces in the path name,
which it looks like you do. Try this:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
-Mike
_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-make