]> git.ipfire.org Git - people/ms/u-boot.git/blame - post/Makefile
POST: move CONFIG_POST to Makefiles
[people/ms/u-boot.git] / post / Makefile
CommitLineData
b6a6460b 1#
f9328639 2# (C) Copyright 2002-2006
b6a6460b
WD
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
2d2b994a 24include $(TOPDIR)/include/autoconf.mk
b6a6460b 25
2d2b994a
YT
26LIB = libpost.a
27GPLIB-$(CONFIG_HAS_POST) += libgenpost.a
28COBJS-$(CONFIG_HAS_POST) += post.o tests.o
b6a6460b 29
2d2b994a
YT
30SPLIB-$(CONFIG_HAS_POST) = drivers/libpostdrivers.a
31SPLIB-$(CONFIG_HAS_POST) += $(shell if [ -d lib_$(ARCH) ]; then echo \
32 "lib_$(ARCH)/libpost$(ARCH).a"; fi)
33SPLIB-$(CONFIG_HAS_POST) += $(shell if [ -d lib_$(ARCH)/fpu ]; then echo \
34 "lib_$(ARCH)/fpu/libpost$(ARCH)fpu.a"; fi)
35SPLIB-$(CONFIG_HAS_POST) += $(shell if [ -d cpu/$(CPU) ]; then echo \
36 "cpu/$(CPU)/libpost$(CPU).a"; fi)
37SPLIB-$(CONFIG_HAS_POST) += $(shell if [ -d board/$(BOARD) ]; then echo \
38 "board/$(BOARD)/libpost$(BOARD).a"; fi)
b6a6460b 39
2d2b994a
YT
40GPLIB := $(GPLIB-y)
41SPLIB := $(SPLIB-y)
42COBJS := $(COBJS-y)
43SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
44OBJS := $(addprefix $(obj),$(COBJS))
45LIB := $(obj)$(LIB)
b6a6460b 46
2d2b994a
YT
47all: $(LIB)
48
49# generic POST library
50$(GPLIB): $(obj).depend $(OBJS)
51 $(AR) $(ARFLAGS) $@ $(OBJS)
52
53# specific POST libraries
54$(SPLIB): $(obj).depend
55 $(MAKE) -C $(dir $(subst $(obj),,$@))
56
57# the POST lib archive
58$(LIB): $(GPLIB) $(SPLIB)
59 (echo create $(LIB); for lib in $(GPLIB) $(SPLIB) ; \
60 do echo addlib $$lib; done; echo save) \
61 | $(AR) -M
62
63#########################################################################
64
65# defines $(obj).depend target
66include $(SRCTREE)/rules.mk
67
68sinclude $(obj).depend
69
70#########################################################################