diff options
| author | Yuri Tikhonov <yur@emcraft.com> | 2008-04-28 18:19:34 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-04-29 13:13:22 +0200 | 
| commit | 18ec19e4aa1a045dfbf2c7c2e33963488e92d757 (patch) | |
| tree | 4a13453f7c2fa44290f382fbcfb31988f311ccef /post/cpu | |
| parent | 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9 (diff) | |
| download | olio-uboot-2014.01-18ec19e4aa1a045dfbf2c7c2e33963488e92d757.tar.xz olio-uboot-2014.01-18ec19e4aa1a045dfbf2c7c2e33963488e92d757.zip | |
POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
Diffstat (limited to 'post/cpu')
| -rw-r--r-- | post/cpu/mpc8xx/Makefile | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/post/cpu/mpc8xx/Makefile b/post/cpu/mpc8xx/Makefile index f871cbab6..162924f6b 100644 --- a/post/cpu/mpc8xx/Makefile +++ b/post/cpu/mpc8xx/Makefile @@ -20,10 +20,11 @@  # Foundation, Inc., 59 Temple Place, Suite 330, Boston,  # MA 02111-1307 USA  # +include $(OBJTREE)/include/autoconf.mk  LIB	= libpostmpc8xx.a -AOBJS	= cache_8xx.o -COBJS	= cache.o ether.o spr.o uart.o usb.o watchdog.o +AOBJS-$(CONFIG_HAS_POST)	+= cache_8xx.o +COBJS-$(CONFIG_HAS_POST)	+= cache.o ether.o spr.o uart.o usb.o watchdog.o  include $(TOPDIR)/post/rules.mk |