From: Wolfgang Denk <wd@pollux.denx.de>
Date: Fri, 2 Jun 2006 14:47:10 +0000 (+0200)
Subject: Fix examples/Makefile; some build targets were lost
X-Git-Tag: v2025.01-rc5-pxa1908~23024
X-Git-Url: http://git.dujemihanovic.xyz/img/static/html/index.html?a=commitdiff_plain;h=e15cd6fdbe6f16eca04a90aeaf4e911178c8af1c;p=u-boot.git

Fix examples/Makefile; some build targets were lost
---

diff --git a/CHANGELOG b/CHANGELOG
index 7342bb99cb..f10f6881f5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,8 @@
 Changes since U-Boot 1.1.4:
 ======================================================================
 
+* Fix examples/Makefile; some build targets were lost
+  
 * Fix watchdog handling in CFI flash driver
   Just use udelay() when waiting for status changes which will
   implicitely trigger the watchdog.
diff --git a/examples/Makefile b/examples/Makefile
index b198048973..fee26741d0 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -122,7 +122,7 @@ clibdir := $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)
 
 CPPFLAGS += -I..
 
-all:	.depend $(OBJS) $(LIB) #$(SREC) $(BIN)
+all:	.depend $(OBJS) $(LIB) $(SREC) $(BIN)
 
 #########################################################################
 $(LIB): .depend $(LIBOBJS)