xref: /openbmc/u-boot/board/samsung/trats/Makefile (revision 89f95492)
1*89f95492SHeungJun, Kim#
2*89f95492SHeungJun, Kim# Copyright (C) 2011 Samsung Electronics
3*89f95492SHeungJun, Kim# Heungjun Kim <riverful.kim@samsung.com>
4*89f95492SHeungJun, Kim#
5*89f95492SHeungJun, Kim# See file CREDITS for list of people who contributed to this
6*89f95492SHeungJun, Kim# project.
7*89f95492SHeungJun, Kim#
8*89f95492SHeungJun, Kim# This program is free software; you can redistribute it and/or
9*89f95492SHeungJun, Kim# modify it under the terms of the GNU General Public License as
10*89f95492SHeungJun, Kim# published by the Free Software Foundation; either version 2 of
11*89f95492SHeungJun, Kim# the License, or (at your option) any later version.
12*89f95492SHeungJun, Kim#
13*89f95492SHeungJun, Kim# This program is distributed in the hope that it will be useful,
14*89f95492SHeungJun, Kim# but WITHOUT ANY WARRANTY; without even the implied warranty of
15*89f95492SHeungJun, Kim# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16*89f95492SHeungJun, Kim# GNU General Public License for more details.
17*89f95492SHeungJun, Kim#
18*89f95492SHeungJun, Kim# You should have received a copy of the GNU General Public License
19*89f95492SHeungJun, Kim# along with this program; if not, write to the Free Software
20*89f95492SHeungJun, Kim# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21*89f95492SHeungJun, Kim# MA 02111-1307 USA
22*89f95492SHeungJun, Kim#
23*89f95492SHeungJun, Kim
24*89f95492SHeungJun, Kiminclude $(TOPDIR)/config.mk
25*89f95492SHeungJun, Kim
26*89f95492SHeungJun, KimLIB	= $(obj)lib$(BOARD).o
27*89f95492SHeungJun, Kim
28*89f95492SHeungJun, KimCOBJS-y	+= trats.o
29*89f95492SHeungJun, Kim
30*89f95492SHeungJun, KimSRCS    := $(COBJS-y:.o=.c)
31*89f95492SHeungJun, KimOBJS	:= $(addprefix $(obj),$(COBJS-y))
32*89f95492SHeungJun, Kim
33*89f95492SHeungJun, Kim$(LIB):	$(obj).depend $(OBJS)
34*89f95492SHeungJun, Kim	$(call cmd_link_o_target, $(OBJS))
35*89f95492SHeungJun, Kim
36*89f95492SHeungJun, Kim#########################################################################
37*89f95492SHeungJun, Kim
38*89f95492SHeungJun, Kim# defines $(obj).depend target
39*89f95492SHeungJun, Kiminclude $(SRCTREE)/rules.mk
40*89f95492SHeungJun, Kim
41*89f95492SHeungJun, Kimsinclude $(obj).depend
42*89f95492SHeungJun, Kim
43*89f95492SHeungJun, Kim#########################################################################
44