Hi Masahiro,
On Sun, Oct 20, 2013 at 10:56 PM, Masahiro Yamada
wrote:
> Hello, Simon.
>
>
>> >> Would looking for obj- be better or worse?
>> >
>> > At first I thought of this but I was kind of worried
>> > whether all makefiles should forcibly have obj-y or obj-.
>> >
>> > arch/arm/cpu/armv7/teg
Hello, Simon.
> >> Would looking for obj- be better or worse?
> >
> > At first I thought of this but I was kind of worried
> > whether all makefiles should forcibly have obj-y or obj-.
> >
> > arch/arm/cpu/armv7/tegra114/
> > arch/arm/cpu/armv7/tegra30/
> > directories have no source files but on
Hi Masahiro,
On Fri, Oct 4, 2013 at 3:59 AM, Masahiro Yamada
wrote:
> Hello Simon
>
>
>
>> > +# Tentative step for Kbuild-style makefiles coexist with conventional
>> > U-Boot style makefiles
>> > +# U-Boot conventional sub makefiles always include some other makefiles.
>> > +# So, the build sy
Hello Simon
> > +# Tentative step for Kbuild-style makefiles coexist with conventional
> > U-Boot style makefiles
> > +# U-Boot conventional sub makefiles always include some other makefiles.
> > +# So, the build system searches a line beginning with "include" before
> > entering into the sub
Hi,
On Thu, Sep 26, 2013 at 5:51 AM, Masahiro Yamada
wrote:
> In every sub directory, Makefile is like follows:
>
> include $(TOPDIR)/config.mk
>
> LIB = $(obj)libfoo.o
>
> COBJS := ...
> COBJS += ...
> SOBJS := ...
>
> SRCS:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
> OB
In every sub directory, Makefile is like follows:
include $(TOPDIR)/config.mk
LIB = $(obj)libfoo.o
COBJS := ...
COBJS += ...
SOBJS := ...
SRCS:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS:= $(addprefix $(obj),$(COBJS) $(SOBJS))
all: $(obj).depend $(LIB)
6 matches
Mail list logo