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