Re: External module Makefile with generated C file

2007-01-27 Thread Arnaldo Carvalho de Melo
Jan Engelhardt wrote: ctracer_methods.o: ctracer_methods.c $(obj)/ctracer_methods.o: $(src)/ctracer_methods.c $(src)/ctracer_methods.c: ... I don't know if $(obj) or $(src) is the right thing, but something along these lines is required for OOT. Thanks, that did the trick,

Re: External module Makefile with generated C file

2007-01-27 Thread Jan Engelhardt
> ctracer_methods.o: ctracer_methods.c $(obj)/ctracer_methods.o: $(src)/ctracer_methods.c $(src)/ctracer_methods.c: ... I don't know if $(obj) or $(src) is the right thing, but something along these lines is required for OOT. -`J' -- - To unsubscribe from this list: send the line

External module Makefile with generated C file

2007-01-27 Thread Arnaldo Carvalho de Melo
Sam, I'm trying to create a external module that involves generating one of the source files needed for the module, I'm using this Makefile: [EMAIL PROTECTED] ctracer_example]$ cat Makefile obj-m := ctracer.o ctracer-y := ctracer_methods.o ctracer_jprobe.o CLASS=sock KDIR :=

External module Makefile with generated C file

2007-01-27 Thread Arnaldo Carvalho de Melo
Sam, I'm trying to create a external module that involves generating one of the source files needed for the module, I'm using this Makefile: [EMAIL PROTECTED] ctracer_example]$ cat Makefile obj-m := ctracer.o ctracer-y := ctracer_methods.o ctracer_jprobe.o CLASS=sock KDIR :=

Re: External module Makefile with generated C file

2007-01-27 Thread Jan Engelhardt
ctracer_methods.o: ctracer_methods.c $(obj)/ctracer_methods.o: $(src)/ctracer_methods.c $(src)/ctracer_methods.c: ... I don't know if $(obj) or $(src) is the right thing, but something along these lines is required for OOT. -`J' -- - To unsubscribe from this list: send the line

Re: External module Makefile with generated C file

2007-01-27 Thread Arnaldo Carvalho de Melo
Jan Engelhardt wrote: ctracer_methods.o: ctracer_methods.c $(obj)/ctracer_methods.o: $(src)/ctracer_methods.c $(src)/ctracer_methods.c: ... I don't know if $(obj) or $(src) is the right thing, but something along these lines is required for OOT. Thanks, that did the trick,