]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/freescale/p1023rdb/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-mpc5xxx
[karo-tx-uboot.git] / board / freescale / p1023rdb / Makefile
1 #
2 # Copyright 2013 Freescale Semiconductor, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify it
5 # under the terms of the GNU General Public License as published by the Free
6 # Software Foundation; either version 2 of the License, or (at your option)
7 # any later version.
8 #
9
10 include $(TOPDIR)/config.mk
11
12 LIB     = $(obj)lib$(BOARD).o
13
14 COBJS-y += $(BOARD).o
15 COBJS-y += ddr.o
16 COBJS-y += law.o
17 COBJS-y += tlb.o
18
19 SRCS    := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
20 OBJS    := $(addprefix $(obj),$(COBJS-y))
21 SOBJS   := $(addprefix $(obj),$(SOBJS))
22
23 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
24         $(call cmd_link_o_target, $(OBJS))
25
26 #########################################################################
27
28 # defines $(obj).depend target
29 include $(SRCTREE)/rules.mk
30
31 sinclude $(obj).depend
32
33 #########################################################################