]> git.ipfire.org Git - people/ms/u-boot.git/blob - post/Makefile
02b51544c2025124b75aa9f5b45c425e4ac90648
[people/ms/u-boot.git] / post / Makefile
1 #
2 # (C) Copyright 2002-2006
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
24 include $(TOPDIR)/include/autoconf.mk
25
26 LIB = libpost.a
27 GPLIB-$(CONFIG_HAS_POST) += libgenpost.a
28 COBJS-$(CONFIG_HAS_POST) += post.o tests.o
29
30 SPLIB-$(CONFIG_HAS_POST) = drivers/libpostdrivers.a
31 SPLIB-$(CONFIG_HAS_POST) += $(shell if [ -d lib_$(ARCH) ]; then echo \
32 "lib_$(ARCH)/libpost$(ARCH).a"; fi)
33 SPLIB-$(CONFIG_HAS_POST) += $(shell if [ -d lib_$(ARCH)/fpu ]; then echo \
34 "lib_$(ARCH)/fpu/libpost$(ARCH)fpu.a"; fi)
35 SPLIB-$(CONFIG_HAS_POST) += $(shell if [ -d cpu/$(CPU) ]; then echo \
36 "cpu/$(CPU)/libpost$(CPU).a"; fi)
37 SPLIB-$(CONFIG_HAS_POST) += $(shell if [ -d board/$(BOARD) ]; then echo \
38 "board/$(BOARD)/libpost$(BOARD).a"; fi)
39
40 GPLIB := $(GPLIB-y)
41 SPLIB := $(SPLIB-y)
42 COBJS := $(COBJS-y)
43 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
44 OBJS := $(addprefix $(obj),$(COBJS))
45 LIB := $(obj)$(LIB)
46
47 all: $(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
66 include $(SRCTREE)/rules.mk
67
68 sinclude $(obj).depend
69
70 #########################################################################