1# (C) Copyright 2013 Freescale Semiconductor, Inc.
2#
3# This program is free software; you can redistribute it and/or
4# modify it under the terms of the GNU General Public License as
5# published by the Free Software Foundation; either version 2 of
6# the License, or (at your option) any later version.
7#
8
9include $(TOPDIR)/config.mk
10
11LIB    = $(obj)lib$(BOARD).o
12
13COBJS  := mx6slevk.o
14
15SRCS   := $(COBJS:.o=.c)
16OBJS   := $(addprefix $(obj),$(COBJS))
17
18$(LIB):        $(obj).depend $(OBJS)
19	$(call cmd_link_o_target, $(OBJS))
20
21#########################################################################
22
23# defines $(obj).depend target
24include $(SRCTREE)/rules.mk
25
26sinclude $(obj).depend
27
28#########################################################################
29