]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/udoo/Makefile
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / board / udoo / Makefile
1 #
2 # (C) Copyright 2013 Freescale Semiconductor, Inc.
3 #
4 # SPDX-License-Identifier:      GPL-2.0+
5 #
6
7 include $(TOPDIR)/config.mk
8
9 LIB    = $(obj)lib$(BOARD).o
10
11 COBJS  := udoo.o
12
13 SRCS   := $(COBJS:.o=.c)
14 OBJS   := $(addprefix $(obj),$(COBJS))
15
16 $(LIB):        $(obj).depend $(OBJS)
17         $(call cmd_link_o_target, $(OBJS))
18
19 #########################################################################
20
21 # defines $(obj).depend target
22 include $(SRCTREE)/rules.mk
23
24 sinclude $(obj).depend
25
26 #########################################################################