]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/ppc/cpu/mpc8xxx/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / arch / ppc / cpu / mpc8xxx / Makefile
1 #
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
9 include $(TOPDIR)/config.mk
10
11 LIB     = $(obj)lib8xxx.a
12
13 COBJS-y += cpu.o
14 COBJS-$(CONFIG_OF_LIBFDT) += fdt.o
15 COBJS-$(CONFIG_PCI)     += pci_cfg.o
16
17 SRCS    := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
18 OBJS    := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
19
20 all:    $(obj).depend $(LIB)
21
22 $(LIB): $(OBJS)
23         $(AR) $(ARFLAGS) $@ $(OBJS)
24
25 include $(SRCTREE)/rules.mk
26
27 sinclude $(obj).depend