blob: 95c73be88906b2fa9e3f4e148adf5811e8580646 [file] [log] [blame]
Poonam Aggrwal18bacc22009-07-31 12:07:45 +05301#
Kim Phillips5d0c3b52010-05-28 08:00:14 +00002# Copyright 2009-2010 Freescale Semiconductor, Inc.
Poonam Aggrwal18bacc22009-07-31 12:07:45 +05303#
4# This program is free software; you can redistribute it and/or
5# modify it under the terms of the GNU General Public License
6# Version 2 as published by the Free Software Foundation.
7#
8
9include $(TOPDIR)/config.mk
10
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010011LIB = $(obj)lib8xxx.o
Poonam Aggrwal18bacc22009-07-31 12:07:45 +053012
Kim Phillips5d0c3b52010-05-28 08:00:14 +000013ifneq ($(CPU),mpc83xx)
Poonam Aggrwal18bacc22009-07-31 12:07:45 +053014COBJS-y += cpu.o
Kim Phillips5d0c3b52010-05-28 08:00:14 +000015endif
16
17COBJS-$(CONFIG_OF_LIBFDT) += fdt.o
Becky Brucef51cdaf2010-06-17 11:37:20 -050018COBJS-$(CONFIG_FSL_LBC) += fsl_lbc.o
Poonam Aggrwal18bacc22009-07-31 12:07:45 +053019
20SRCS := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
21OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
22
23all: $(obj).depend $(LIB)
24
25$(LIB): $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010026 $(call cmd_link_o_target, $(OBJS))
Poonam Aggrwal18bacc22009-07-31 12:07:45 +053027
28include $(SRCTREE)/rules.mk
29
30sinclude $(obj).depend