Re: Multiple .o files from single .c file - how?

Krzysztof Halasa (khc@intrepid.pm.waw.pl)
09 Apr 2000 02:00:08 +0200


willy@thepuffingroup.com writes:

> How horrible. A better way to do this is with the per-file define method
> which is already provided:
>
> CFLAGS_init_task0.o = -DALIGN=0
> CFLAGS_init_task1.o = -DALIGN=1
> CFLAGS_init_task2.o = -DALIGN=2
> CFLAGS_init_task3.o = -DALIGN=3
>
> init_task0.o init_task1.o init_task2.o init_task3.o : init_task.c
> $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(CFLAGS_$@) -c -o $@ $<

But it seems you have to list all .h dependencies here - make dep generates
dependencies for init_task.o and not for init_task[0123].o.

-- 
Krzysztof Halasa
Network Administrator

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/