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. //Peter -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

