]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/ti/dra7xx/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / ti / dra7xx / Makefile
CommitLineData
687054a7
LV
1#
2# (C) Copyright 2013
3# Texas Instruments, <www.ti.com>
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
687054a7
LV
6#
7
8include $(TOPDIR)/config.mk
9
10LIB = $(obj)lib$(BOARD).o
11
12COBJS := evm.o
13
14SRCS := $(COBJS:.o=.c)
15OBJS := $(addprefix $(obj),$(COBJS))
16
17$(LIB): $(obj).depend $(OBJS)
18 $(call cmd_link_o_target, $(OBJS))
19
20clean:
21 rm -f $(OBJS)
22
23distclean: clean
24 rm -f $(LIB) core *.bak $(obj).depend
25
26#########################################################################
27
28# defines $(obj).depend target
29include $(SRCTREE)/rules.mk
30
31sinclude $(obj).depend
32
33#########################################################################