diff options
author | Yuri Tikhonov <yur@emcraft.com> | 2008-03-31 10:51:37 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-04-22 14:40:19 +0200 |
commit | 2d2b994a30bb100774dc747ae9865b7f95285a88 (patch) | |
tree | ab0325bd8261b84fa1101b0a47c058fd5fbb215d /post/lib_ppc | |
parent | 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1 (diff) | |
download | u-boot-2d2b994a30bb100774dc747ae9865b7f95285a88.tar.gz u-boot-2d2b994a30bb100774dc747ae9865b7f95285a88.tar.xz u-boot-2d2b994a30bb100774dc747ae9865b7f95285a88.zip |
POST: move CONFIG_POST to Makefiles
Introduce the new logical option CONFIG_HAS_POST which is set when the
platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
to determine should the POST libs be compiled for the selected target
platform, or not.
To avoid breaking u-boot linking process, the empty post/libpost.a file is
created for platforms which do not have POSTs.
Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'post/lib_ppc')
-rw-r--r-- | post/lib_ppc/Makefile | 11 | ||||
-rw-r--r-- | post/lib_ppc/fpu/Makefile | 6 |
2 files changed, 8 insertions, 9 deletions
diff --git a/post/lib_ppc/Makefile b/post/lib_ppc/Makefile index 9f1b329d70..bd7a232992 100644 --- a/post/lib_ppc/Makefile +++ b/post/lib_ppc/Makefile @@ -20,14 +20,13 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, # MA 02111-1307 USA # - -SUBDIRS = fpu +include $(TOPDIR)/config.mk LIB = libpostppc.a -AOBJS = asm.o -COBJS = cpu.o cmp.o cmpi.o two.o twox.o three.o threex.o -COBJS += threei.o andi.o srawi.o rlwnm.o rlwinm.o rlwimi.o -COBJS += store.o load.o cr.o b.o multi.o string.o complex.o +AOBJS-$(CONFIG_HAS_POST) += asm.o +COBJS-$(CONFIG_HAS_POST) += cpu.o cmp.o cmpi.o two.o twox.o three.o threex.o +COBJS-$(CONFIG_HAS_POST) += threei.o andi.o srawi.o rlwnm.o rlwinm.o rlwimi.o +COBJS-$(CONFIG_HAS_POST) += store.o load.o cr.o b.o multi.o string.o complex.o include $(TOPDIR)/post/rules.mk diff --git a/post/lib_ppc/fpu/Makefile b/post/lib_ppc/fpu/Makefile index 82646c80d6..db435931d8 100644 --- a/post/lib_ppc/fpu/Makefile +++ b/post/lib_ppc/fpu/Makefile @@ -20,12 +20,12 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, # MA 02111-1307 USA # - +include $(TOPDIR)/config.mk LIB = libpostppcfpu.a -COBJS += fpu.o 20001122-1.o 20010114-2.o 20010226-1.o 980619-1.o -COBJS += acc1.o compare-fp-1.o mul-subnormal-single-1.o +COBJS-$(CONFIG_HAS_POST) += fpu.o 20001122-1.o 20010114-2.o 20010226-1.o 980619-1.o +COBJS-$(CONFIG_HAS_POST) += acc1.o compare-fp-1.o mul-subnormal-single-1.o include $(TOPDIR)/post/rules.mk |