xref: /rk3399_rockchip-uboot/post/Makefile (revision 4b7a6dd89633d60dc4b58476d5ce48247f82a3ca)
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
24include $(TOPDIR)/include/autoconf.mk
25
26LIB				= libpost.a
27GPLIB-$(CONFIG_HAS_POST)	+= libgenpost.a
28COBJS-$(CONFIG_HAS_POST)	+= post.o tests.o
29
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)
39
40GPLIB	:= $(GPLIB-y)
41SPLIB	:= $(SPLIB-y)
42COBJS	:= $(COBJS-y)
43SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
44OBJS	:= $(addprefix $(obj),$(COBJS))
45LIB	:= $(obj)$(LIB)
46
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#########################################################################
71