blob: 86344a7b4a0d2a86addea6e412a70aa47a005b66 [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
Dipen Dudhatd789b5f2011-01-20 16:29:35 +053018COBJS-$(CONFIG_FSL_IFC) += fsl_ifc.o
Becky Brucef51cdaf2010-06-17 11:37:20 -050019COBJS-$(CONFIG_FSL_LBC) += fsl_lbc.o
Kumar Galaa09b9b62010-12-30 12:09:53 -060020COBJS-$(CONFIG_SYS_SRIO) += srio.o
Scott Wood8bc50f02012-08-17 16:17:50 -050021COBJS-$(CONFIG_FSL_LAW) += law.o
Poonam Aggrwal18bacc22009-07-31 12:07:45 +053022
23SRCS := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
24OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
25
26all: $(obj).depend $(LIB)
27
28$(LIB): $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010029 $(call cmd_link_o_target, $(OBJS))
Poonam Aggrwal18bacc22009-07-31 12:07:45 +053030
31include $(SRCTREE)/rules.mk
32
33sinclude $(obj).depend