mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v2 1/2] Makefile: Create empty <config.h> if this header file is not needed by board
@ 2013-04-05 14:43 Alexander Shiyan
  2013-04-05 14:43 ` [PATCH v2 2/2] Remove unused config.h Alexander Shiyan
  2013-04-09  6:43 ` [PATCH v2 1/2] Makefile: Create empty <config.h> if this header file is not needed by board Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Alexander Shiyan @ 2013-04-05 14:43 UTC (permalink / raw)
  To: barebox

Patch creates empty <config.h> if this header is not needed by board.
This will allow to remove many empty config.h files from boards.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 Makefile | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/Makefile b/Makefile
index a7db9de..71f181c 100644
--- a/Makefile
+++ b/Makefile
@@ -841,13 +841,19 @@ include/asm:
 	$(Q)$(check-symlink)
 	$(Q)$(create-symlink)
 
+define symlink-config-h
+	if [ -f $(srctree)/$(BOARD)/config.h ]; then		\
+		$(kecho) '  SYMLINK $@ -> $(BOARD)/config.h';	\
+		ln -fsn $(srctree)/$(BOARD)/config.h $@;	\
+	else							\
+		[ -h $@ ] && rm -f $@;				\
+		$(kecho) '  CREATE  $@';			\
+		touch -a $@;					\
+	fi
+endef
+
 include/config.h: include/config/auto.conf
-	$(Q)$(kecho) '  SYMLINK $@ -> $(BOARD)/config.h'
-ifneq ($(KBUILD_SRC),)
-	$(Q)ln -fsn $(srctree)/$(BOARD)/config.h $@
-else
-	$(Q)ln -fsn ../$(BOARD)/config.h $@
-endif
+	$(Q)$(symlink-config-h)
 
 # Generate some files
 # ---------------------------------------------------------------------------
-- 
1.8.1.5


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2013-04-09  6:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-05 14:43 [PATCH v2 1/2] Makefile: Create empty <config.h> if this header file is not needed by board Alexander Shiyan
2013-04-05 14:43 ` [PATCH v2 2/2] Remove unused config.h Alexander Shiyan
2013-04-09  6:43 ` [PATCH v2 1/2] Makefile: Create empty <config.h> if this header file is not needed by board Sascha Hauer

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