On Fri, Aug 14, 2009 at 6:19 PM, Peter Stuge<[email protected]> wrote: > ron minnich wrote: >> $(obj)/ldscript.ld: $(ldscripts) $(obj)/ldoptions >> - $(Q)printf 'INCLUDE "ldoptions"\n' > $@ >> - $(Q)printf '$(foreach ldscript,$(ldscripts),INCLUDE "$(ldscript)"\n)' >> >> $@ >> + $(Q)cat $(obj)/ldoptions> $@ >> + $(Q)cat $(ldscripts) >> $@ > > This could be simplified a little at least with GNU make: > > $(Q)cat $^ > $@ > > $^ will expand to all direct dependencies for the rule.
patches welcome. ron -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

