]> git.sur5r.net Git - u-boot/blob - board/freescale/c29xpcie/Makefile
15bef9a85b5a8173ee0b5fdf63f0ed038b67aad7
[u-boot] / board / freescale / c29xpcie / 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 += cpld.o
16 COBJS-y += ddr.o
17 COBJS-y += law.o
18 COBJS-y += tlb.o
19
20 SRCS    := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
21 OBJS    := $(addprefix $(obj),$(COBJS-y))
22 SOBJS   := $(addprefix $(obj),$(SOBJS))
23
24 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
25         $(call cmd_link_o_target, $(OBJS))
26
27 #########################################################################
28
29 # defines $(obj).depend target
30 include $(SRCTREE)/rules.mk
31
32 sinclude $(obj).depend
33
34 #########################################################################