]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/renesas/rsk7269/Makefile
mxc_ipuv3: fix memory alignment of framebuffer
[karo-tx-uboot.git] / board / renesas / rsk7269 / Makefile
1 #
2 # Copyright (C) 2012 Renesas Electronics Europe Ltd.
3 # Copyright (C) 2012 Phil Edworthy
4 #
5 # This file is released under the terms of GPL v2 and any later version.
6 # See the file COPYING in the root directory of the source tree for details.
7
8 include $(TOPDIR)/config.mk
9
10 LIB     = lib$(BOARD).o
11
12 OBJS    := rsk7269.o
13 SOBJS   := lowlevel_init.o
14
15 LIB     := $(addprefix $(obj),$(LIB))
16 OBJS    := $(addprefix $(obj),$(OBJS))
17 SOBJS   := $(addprefix $(obj),$(SOBJS))
18
19 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
20         $(call cmd_link_o_target, $(OBJS) $(SOBJS))
21
22 #########################################################################
23
24 # defines $(obj).depend target
25 include $(SRCTREE)/rules.mk
26
27 sinclude $(obj).depend