I'm trying to build a kernel module from files in multiple directories. I want to place the resulting .o files in new directories, created corresponding to each source directories.
For example, if my sources are A/a1.c , A/a2.c , B/b.c ; I want the .o files to go to A/new-dir/a1.o A/new-dir/a2.o B/new-dir/b.o and so on.
My current Makefile is like this:
obj-m += foo.o
lavya-objs := lavya_module1.o lavya_module2.o
lavya-objs += $(A_DIR)/a1.o $(A_DIR)/a2.o $(B_DIR)/b.o
all:
make -C $KERNEL_PATH M=$(PWD) modules
and it creates .o files in the same directories as the corresponding .c files. Is it possible to modify the Makefile to insert a new directory in each of the source directories and move the .o files there instead? How can it be done?
Many Thanks!
a1.cand puta1.osomewhere. It doesn't know who wrotea1.c, nor what the code is going to do. – Beta Jan 16 at 18:04