public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] RFC: Makefile style question with testing?
@ 2007-11-26 16:48 Kumar Gala
  2007-11-26 16:59 ` Grant Likely
  0 siblings, 1 reply; 3+ messages in thread
From: Kumar Gala @ 2007-11-26 16:48 UTC (permalink / raw)
  To: u-boot

With Grant's work in testing I was wondering of the two options I have
below which is preferred:

option 1: duplicating CONFIG_OF_LIBFDT to maintain one line per source
file
option 2: put files that use same CONFIG_ on the same line

- k

diff --git a/common/Makefile b/common/Makefile
index ace8cc7..cf980bd 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -105,7 +105,7 @@ COBJS-y += env_onenand.o
 COBJS-y += env_nvram.o
 COBJS-y += env_nowhere.o
 COBJS-y += exports.o
-COBJS-y += fdt_support.o
+COBJS-$(CONFIG_OF_LIBFDT) += fdt_support.o
 COBJS-y += flash.o
 COBJS-y += fpga.o
 COBJS-y += ft_build.o

--- or ---

diff --git a/common/Makefile b/common/Makefile
index ace8cc7..7be89a4 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -55,7 +55,7 @@ COBJS-$(CONFIG_CMD_ELF) += cmd_elf.o
 COBJS-$(CONFIG_CMD_EXT2) += cmd_ext2.o
 COBJS-$(CONFIG_CMD_FAT) += cmd_fat.o
 COBJS-y += cmd_fdc.o
-COBJS-$(CONFIG_OF_LIBFDT) += cmd_fdt.o
+COBJS-$(CONFIG_OF_LIBFDT) += cmd_fdt.o fdt_support.o
 COBJS-$(CONFIG_CMD_FDOS) += cmd_fdos.o
 COBJS-$(CONFIG_CMD_FLASH) += cmd_flash.o
 ifdef CONFIG_FPGA
@@ -105,7 +105,6 @@ COBJS-y += env_onenand.o
 COBJS-y += env_nvram.o
 COBJS-y += env_nowhere.o
 COBJS-y += exports.o
-COBJS-y += fdt_support.o
 COBJS-y += flash.o
 COBJS-y += fpga.o
 COBJS-y += ft_build.o

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-11-26 17:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-26 16:48 [U-Boot-Users] RFC: Makefile style question with testing? Kumar Gala
2007-11-26 16:59 ` Grant Likely
2007-11-26 17:05   ` Jerry Van Baren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox