diff options
author | Jon Loeliger <jdl@freescale.com> | 2008-02-13 16:03:20 -0600 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2008-02-13 16:03:20 -0600 |
commit | d075eec500acffed5fa404a45a3e12e158d0cb33 (patch) | |
tree | 2cecaae4e1c324827caa65d6c5215642ed4a91ed /api | |
parent | 60c1b95aabbfac17b0ea9422828784e163348c5c (diff) | |
parent | 10bbb38a402a2faf18858c451bcdc63d45888e6e (diff) | |
download | u-boot-imx-d075eec500acffed5fa404a45a3e12e158d0cb33.zip u-boot-imx-d075eec500acffed5fa404a45a3e12e158d0cb33.tar.gz u-boot-imx-d075eec500acffed5fa404a45a3e12e158d0cb33.tar.bz2 |
Merge commit 'wd/master'
Diffstat (limited to 'api')
-rw-r--r-- | api/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/api/Makefile b/api/Makefile index 94de3dc..4216892 100644 --- a/api/Makefile +++ b/api/Makefile @@ -24,13 +24,12 @@ include $(TOPDIR)/config.mk LIB = $(obj)libapi.a -COBJS = api.o api_net.o api_storage.o api_platform-$(ARCH).o +COBJS-$(CONFIG_API) += api.o api_net.o api_storage.o api_platform-$(ARCH).o +COBJS := $(COBJS-y) SRCS := $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) -all: $(LIB) - $(LIB): $(obj).depend $(OBJS) $(AR) $(ARFLAGS) $@ $(OBJS) |