1*5a4c59beSDonghwa Lee# 2*5a4c59beSDonghwa Lee# (C) Copyright 2012 Samsung Electronics 3*5a4c59beSDonghwa Lee# Donghwa Lee <dh09.lee@samsung.com> 4*5a4c59beSDonghwa Lee# 5*5a4c59beSDonghwa Lee# See file CREDITS for list of people who contributed to this 6*5a4c59beSDonghwa Lee# project. 7*5a4c59beSDonghwa Lee# 8*5a4c59beSDonghwa Lee# This program is free software; you can redistribute it and/or 9*5a4c59beSDonghwa Lee# modify it under the terms of the GNU General Public License as 10*5a4c59beSDonghwa Lee# published by the Free Software Foundation; either version 2 of 11*5a4c59beSDonghwa Lee# the License, or (at your option) any later version. 12*5a4c59beSDonghwa Lee# 13*5a4c59beSDonghwa Lee# This program is distributed in the hope that it will be useful, 14*5a4c59beSDonghwa Lee# but WITHOUT ANY WARRANTY; without even the implied warranty of 15*5a4c59beSDonghwa Lee# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16*5a4c59beSDonghwa Lee# GNU General Public License for more details. 17*5a4c59beSDonghwa Lee# 18*5a4c59beSDonghwa Lee# You should have received a copy of the GNU General Public License 19*5a4c59beSDonghwa Lee# along with this program; if not, write to the Free Software 20*5a4c59beSDonghwa Lee# Foundation, Inc., 59 Temple Place, Suite 330, Boston, 21*5a4c59beSDonghwa Lee# MA 02111-1307 USA 22*5a4c59beSDonghwa Lee# 23*5a4c59beSDonghwa Lee 24*5a4c59beSDonghwa Leeinclude $(TOPDIR)/config.mk 25*5a4c59beSDonghwa Lee 26*5a4c59beSDonghwa LeeLIB = $(obj)libtizen.o 27*5a4c59beSDonghwa Lee 28*5a4c59beSDonghwa LeeSOBJS = 29*5a4c59beSDonghwa Lee 30*5a4c59beSDonghwa LeeCOBJS-$(CONFIG_TIZEN) += tizen.o 31*5a4c59beSDonghwa Lee 32*5a4c59beSDonghwa LeeCOBJS := $(sort $(COBJS-y)) 33*5a4c59beSDonghwa LeeSRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) 34*5a4c59beSDonghwa LeeOBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) 35*5a4c59beSDonghwa Lee 36*5a4c59beSDonghwa Lee$(LIB): $(obj).depend $(OBJS) 37*5a4c59beSDonghwa Lee $(call cmd_link_o_target, $(OBJS)) 38*5a4c59beSDonghwa Lee 39*5a4c59beSDonghwa Lee######################################################################### 40*5a4c59beSDonghwa Lee 41*5a4c59beSDonghwa Lee# defines $(obj).depend target 42*5a4c59beSDonghwa Leeinclude $(SRCTREE)/rules.mk 43*5a4c59beSDonghwa Lee 44*5a4c59beSDonghwa Leesinclude $(obj).depend 45*5a4c59beSDonghwa Lee 46*5a4c59beSDonghwa Lee######################################################################### 47