3 # Net Insight <www.netinsight.net>
4 # Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
8 # Marvell Semiconductor <www.marvell.com>
9 # Written-by: Prafulla Wadaskar <prafulla@marvell.com>
11 # See file CREDITS for list of people who contributed to this
14 # This program is free software; you can redistribute it and/or
15 # modify it under the terms of the GNU General Public License as
16 # published by the Free Software Foundation; either version 2 of
17 # the License, or (at your option) any later version.
19 # This program is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
30 include $(TOPDIR)/config.mk
32 LIB = $(obj)lib$(BOARD).o
34 COBJS := openrd_base.o
36 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
37 OBJS := $(addprefix $(obj),$(COBJS))
38 SOBJS := $(addprefix $(obj),$(SOBJS))
40 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
41 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
44 rm -f $(SOBJS) $(OBJS)
47 rm -f $(LIB) core *.bak .depend
49 #########################################################################
51 # defines $(obj).depend target
52 include $(SRCTREE)/rules.mk
54 sinclude $(obj).depend
56 #########################################################################