]> git.ipfire.org Git - people/ms/u-boot.git/blame - cpu/mpc8xxx/Makefile
ppc/85xx: Cleanup makefile and related optional files
[people/ms/u-boot.git] / cpu / mpc8xxx / Makefile
CommitLineData
18bacc20
PA
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
9include $(TOPDIR)/config.mk
10
11LIB = $(obj)lib8xxx.a
12
13COBJS-y += cpu.o
14
15SRCS := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
16OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
17
18all: $(obj).depend $(LIB)
19
20$(LIB): $(OBJS)
21 $(AR) $(ARFLAGS) $@ $(OBJS)
22
23include $(SRCTREE)/rules.mk
24
25sinclude $(obj).depend