blob: ea5122289e2d538499089a63ee1653e5ec955df0 [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
11LIB = $(obj)lib8xxx.a
12
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)
27 $(AR) $(ARFLAGS) $@ $(OBJS)
28
29include $(SRCTREE)/rules.mk
30
31sinclude $(obj).depend