xref: /openbmc/u-boot/arch/powerpc/lib/Makefile (revision a47a12becf66f02a56da91c161e2edb625e9f20c)
1*a47a12beSStefan Roese#
2*a47a12beSStefan Roese# (C) Copyright 2000-2006
3*a47a12beSStefan Roese# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4*a47a12beSStefan Roese#
5*a47a12beSStefan Roese# See file CREDITS for list of people who contributed to this
6*a47a12beSStefan Roese# project.
7*a47a12beSStefan Roese#
8*a47a12beSStefan Roese# This program is free software; you can redistribute it and/or
9*a47a12beSStefan Roese# modify it under the terms of the GNU General Public License as
10*a47a12beSStefan Roese# published by the Free Software Foundation; either version 2 of
11*a47a12beSStefan Roese# the License, or (at your option) any later version.
12*a47a12beSStefan Roese#
13*a47a12beSStefan Roese# This program is distributed in the hope that it will be useful,
14*a47a12beSStefan Roese# but WITHOUT ANY WARRANTY; without even the implied warranty of
15*a47a12beSStefan Roese# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16*a47a12beSStefan Roese# GNU General Public License for more details.
17*a47a12beSStefan Roese#
18*a47a12beSStefan Roese# You should have received a copy of the GNU General Public License
19*a47a12beSStefan Roese# along with this program; if not, write to the Free Software
20*a47a12beSStefan Roese# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21*a47a12beSStefan Roese# MA 02111-1307 USA
22*a47a12beSStefan Roese#
23*a47a12beSStefan Roese
24*a47a12beSStefan Roeseinclude $(TOPDIR)/config.mk
25*a47a12beSStefan Roese
26*a47a12beSStefan RoeseLIB	= $(obj)lib$(ARCH).a
27*a47a12beSStefan Roese
28*a47a12beSStefan RoeseSOBJS-y	+= ppccache.o
29*a47a12beSStefan RoeseSOBJS-y	+= ppcstring.o
30*a47a12beSStefan RoeseSOBJS-y	+= ticks.o
31*a47a12beSStefan RoeseSOBJS-y	+= reloc.o
32*a47a12beSStefan Roese
33*a47a12beSStefan RoeseCOBJS-y	+= bat_rw.o
34*a47a12beSStefan RoeseCOBJS-y	+= board.o
35*a47a12beSStefan RoeseCOBJS-y	+= bootm.o
36*a47a12beSStefan RoeseCOBJS-y	+= cache.o
37*a47a12beSStefan RoeseCOBJS-y	+= extable.o
38*a47a12beSStefan RoeseCOBJS-y	+= interrupts.o
39*a47a12beSStefan RoeseCOBJS-$(CONFIG_CMD_KGDB) += kgdb.o
40*a47a12beSStefan RoeseCOBJS-y	+= time.o
41*a47a12beSStefan Roese
42*a47a12beSStefan RoeseSRCS	:= $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
43*a47a12beSStefan RoeseOBJS	:= $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
44*a47a12beSStefan Roese
45*a47a12beSStefan Roese$(LIB):	$(obj).depend $(OBJS)
46*a47a12beSStefan Roese	@if ! $(CROSS_COMPILE)readelf -S $(OBJS) | grep -q '\.fixup.*PROGBITS';\
47*a47a12beSStefan Roese	then \
48*a47a12beSStefan Roese		echo "ERROR: Your compiler doesn't generate .fixup sections!";\
49*a47a12beSStefan Roese		echo "       Upgrade to a recent toolchain."; \
50*a47a12beSStefan Roese		exit 1; \
51*a47a12beSStefan Roese	fi;
52*a47a12beSStefan Roese	$(AR) $(ARFLAGS) $@ $(OBJS)
53*a47a12beSStefan Roese
54*a47a12beSStefan Roese#########################################################################
55*a47a12beSStefan Roese
56*a47a12beSStefan Roese# defines $(obj).depend target
57*a47a12beSStefan Roeseinclude $(SRCTREE)/rules.mk
58*a47a12beSStefan Roese
59*a47a12beSStefan Roesesinclude $(obj).depend
60*a47a12beSStefan Roese
61*a47a12beSStefan Roese#########################################################################
62