]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Fix make dependencies for at91rm9200 and ks8695 cpus
authorWolfgang Denk <wd@pollux.denx.de>
Tue, 23 Aug 2005 20:29:44 +0000 (22:29 +0200)
committerWolfgang Denk <wd@pollux.denx.de>
Tue, 23 Aug 2005 20:29:44 +0000 (22:29 +0200)
Patch by Steven Scholz, 23 Aug 2005

CHANGELOG
cpu/arm920t/at91rm9200/Makefile
cpu/arm920t/ks8695/Makefile

index cfb01c9201172b6d06d982a08de0d967d102c063..881341d6f66d07d1c9deb4331a549d9b9c5b196e 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,9 @@
 Changes for U-Boot 1.1.4:
 ======================================================================
 
+* Fix make dependencies for at91rm9200 and ks8695 cpus
+  Patch by Steven Scholz, 23 Aug 2005
+
 * Add JFFS2 support for TQM5200 board
 
 * Add esd cpci5200 and pf5200 boards
index 0c9bcb25cd8880be01e465a3c47d87bfff2e15d6..87695c06012fa2a76e7e7230468cd444f2fb5338 100644 (file)
@@ -35,8 +35,8 @@ $(LIB):       $(OBJS) $(SOBJS)
 
 #########################################################################
 
-.depend:       Makefile $(OBJS:.o=.c)
-               $(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@
+.depend:       Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
+               $(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
 
 sinclude .depend
 
index ada71740b0058a548728b36ae1ce84a5f4e5f2cc..ac49060897253f247f0a6aadb9a80179d062b215 100644 (file)
@@ -35,8 +35,8 @@ $(LIB):       $(OBJS) $(SOBJS)
 
 #########################################################################
 
-.depend:       Makefile $(OBJS:.o=.c)
-               $(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@
+.depend:       Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
+               $(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
 
 sinclude .depend