xref: /openbmc/u-boot/board/ti/omap5_uevm/Makefile (revision 2c2a9f3a)
1*2c2a9f3aSSRICHARAN R#
2*2c2a9f3aSSRICHARAN R# (C) Copyright 2000, 2001, 2002
3*2c2a9f3aSSRICHARAN R# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4*2c2a9f3aSSRICHARAN R#
5*2c2a9f3aSSRICHARAN R# See file CREDITS for list of people who contributed to this
6*2c2a9f3aSSRICHARAN R# project.
7*2c2a9f3aSSRICHARAN R#
8*2c2a9f3aSSRICHARAN R# This program is free software; you can redistribute it and/or
9*2c2a9f3aSSRICHARAN R# modify it under the terms of the GNU General Public License as
10*2c2a9f3aSSRICHARAN R# published by the Free Software Foundation; either version 2 of
11*2c2a9f3aSSRICHARAN R# the License, or (at your option) any later version.
12*2c2a9f3aSSRICHARAN R#
13*2c2a9f3aSSRICHARAN R# This program is distributed in the hope that it will be useful,
14*2c2a9f3aSSRICHARAN R# but WITHOUT ANY WARRANTY; without even the implied warranty of
15*2c2a9f3aSSRICHARAN R# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16*2c2a9f3aSSRICHARAN R# GNU General Public License for more details.
17*2c2a9f3aSSRICHARAN R#
18*2c2a9f3aSSRICHARAN R# You should have received a copy of the GNU General Public License
19*2c2a9f3aSSRICHARAN R# along with this program; if not, write to the Free Software
20*2c2a9f3aSSRICHARAN R# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21*2c2a9f3aSSRICHARAN R# MA 02111-1307 USA
22*2c2a9f3aSSRICHARAN R#
23*2c2a9f3aSSRICHARAN R
24*2c2a9f3aSSRICHARAN Rinclude $(TOPDIR)/config.mk
25*2c2a9f3aSSRICHARAN R
26*2c2a9f3aSSRICHARAN RLIB	= $(obj)lib$(BOARD).o
27*2c2a9f3aSSRICHARAN R
28*2c2a9f3aSSRICHARAN RCOBJS	:= evm.o
29*2c2a9f3aSSRICHARAN R
30*2c2a9f3aSSRICHARAN RSRCS	:= $(COBJS:.o=.c)
31*2c2a9f3aSSRICHARAN ROBJS	:= $(addprefix $(obj),$(COBJS))
32*2c2a9f3aSSRICHARAN R
33*2c2a9f3aSSRICHARAN R$(LIB):	$(obj).depend $(OBJS)
34*2c2a9f3aSSRICHARAN R	$(call cmd_link_o_target, $(OBJS))
35*2c2a9f3aSSRICHARAN R
36*2c2a9f3aSSRICHARAN Rclean:
37*2c2a9f3aSSRICHARAN R	rm -f $(OBJS)
38*2c2a9f3aSSRICHARAN R
39*2c2a9f3aSSRICHARAN Rdistclean:	clean
40*2c2a9f3aSSRICHARAN R	rm -f $(LIB) core *.bak $(obj).depend
41*2c2a9f3aSSRICHARAN R
42*2c2a9f3aSSRICHARAN R#########################################################################
43*2c2a9f3aSSRICHARAN R
44*2c2a9f3aSSRICHARAN R# defines $(obj).depend target
45*2c2a9f3aSSRICHARAN Rinclude $(SRCTREE)/rules.mk
46*2c2a9f3aSSRICHARAN R
47*2c2a9f3aSSRICHARAN Rsinclude $(obj).depend
48*2c2a9f3aSSRICHARAN R
49*2c2a9f3aSSRICHARAN R#########################################################################
50