blob: 5cb6814403d1c8a4504625941a795188633b7807 [file] [log] [blame]
Poonam Aggrwal18bacc22009-07-31 12:07:45 +05301#
2# Copyright 2009 Freescale Semiconductor, Inc.
3#
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
13COBJS-y += cpu.o
Kumar Gala865f24d2009-09-02 09:03:08 -050014COBJS-$(CONFIG_PCI) += pci_cfg.o
Poonam Aggrwal18bacc22009-07-31 12:07:45 +053015
16SRCS := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
17OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
18
19all: $(obj).depend $(LIB)
20
21$(LIB): $(OBJS)
22 $(AR) $(ARFLAGS) $@ $(OBJS)
23
24include $(SRCTREE)/rules.mk
25
26sinclude $(obj).depend