blob: ab80dd77230b56e685229888f0905f24ae31cd1e [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
Kumar Gala3e7b6c12009-09-02 09:03:08 -050015COBJS-$(CONFIG_PCI) += pci_cfg.o
Kim Phillips5d0c3b52010-05-28 08:00:14 +000016endif
17
18COBJS-$(CONFIG_OF_LIBFDT) += fdt.o
Becky Brucef51cdaf2010-06-17 11:37:20 -050019COBJS-$(CONFIG_FSL_LBC) += fsl_lbc.o
Poonam Aggrwal18bacc22009-07-31 12:07:45 +053020
21SRCS := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
22OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
23
24all: $(obj).depend $(LIB)
25
26$(LIB): $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010027 $(call cmd_link_o_target, $(OBJS))
Poonam Aggrwal18bacc22009-07-31 12:07:45 +053028
29include $(SRCTREE)/rules.mk
30
31sinclude $(obj).depend