]> git.sur5r.net Git - u-boot/blob - board/ti/dra7xx/Makefile
Merge branch 'next' of git://git.denx.de/u-boot-mpc83xx
[u-boot] / board / ti / dra7xx / Makefile
1 #
2 # (C) Copyright 2013
3 # Texas Instruments, <www.ti.com>
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 include $(TOPDIR)/config.mk
9
10 LIB     = $(obj)lib$(BOARD).o
11
12 COBJS   := evm.o
13
14 SRCS    := $(COBJS:.o=.c)
15 OBJS    := $(addprefix $(obj),$(COBJS))
16
17 $(LIB): $(obj).depend $(OBJS)
18         $(call cmd_link_o_target, $(OBJS))
19
20 clean:
21         rm -f $(OBJS)
22
23 distclean:      clean
24         rm -f $(LIB) core *.bak $(obj).depend
25
26 #########################################################################
27
28 # defines $(obj).depend target
29 include $(SRCTREE)/rules.mk
30
31 sinclude $(obj).depend
32
33 #########################################################################