* [PATCH] h8300 makefile update
@ 2005-01-20 16:30 Yoshinori Sato
0 siblings, 0 replies; only message in thread
From: Yoshinori Sato @ 2005-01-20 16:30 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel
Fix build error when .config does not exist
Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
===== arch/h8300/Makefile 1.7 vs edited =====
--- 1.7/arch/h8300/Makefile 2004-05-15 11:00:17 +09:00
+++ edited/arch/h8300/Makefile 2005-01-20 23:09:33 +09:00
@@ -7,9 +7,6 @@
#
# (C) Copyright 2002,2003 Yoshinori Sato <ysato@users.sourceforge.jp>
#
-ifndef include-config
--include $(TOPDIR)/.config
-endif
platform-$(CONFIG_CPU_H8300H) := h8300h
platform-$(CONFIG_CPU_H8S) := h8s
@@ -47,9 +44,11 @@
head-y := arch/$(ARCH)/platform/$(platform-y)/$(board-y)/crt0_$(model-y).o
core-y += arch/$(ARCH)/kernel/ \
- arch/$(ARCH)/mm/ \
- arch/$(ARCH)/platform/$(PLATFORM)/ \
+ arch/$(ARCH)/mm/
+ifdef PLATFORM
+core-y += arch/$(ARCH)/platform/$(PLATFORM)/ \
arch/$(ARCH)/platform/$(PLATFORM)/$(BOARD)/
+endif
libs-y += arch/$(ARCH)/lib/ $(LIBGCC)
--
Yoshinori Sato
<ysato@users.sourceforge.jp>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-01-20 16:46 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-20 16:30 [PATCH] h8300 makefile update Yoshinori Sato
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.