Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2009 |
| 3 | # Net Insight <www.netinsight.net> |
| 4 | # Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net> |
| 5 | # |
| 6 | # Based on sheevaplug: |
| 7 | # (C) Copyright 2009 |
| 8 | # Marvell Semiconductor <www.marvell.com> |
| 9 | # Written-by: Prafulla Wadaskar <prafulla@marvell.com> |
| 10 | # |
| 11 | # See file CREDITS for list of people who contributed to this |
| 12 | # project. |
| 13 | # |
| 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. |
| 18 | # |
| 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. |
| 23 | # |
| 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, |
| 27 | # MA 02110-1301 USA |
| 28 | # |
| 29 | |
| 30 | include $(TOPDIR)/config.mk |
| 31 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 32 | LIB = $(obj)lib$(BOARD).o |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 33 | |
Clint Adams | f846604 | 2011-05-06 22:06:47 +0530 | [diff] [blame] | 34 | COBJS := openrd.o |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 35 | |
| 36 | SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) |
| 37 | OBJS := $(addprefix $(obj),$(COBJS)) |
| 38 | SOBJS := $(addprefix $(obj),$(SOBJS)) |
| 39 | |
| 40 | $(LIB): $(obj).depend $(OBJS) $(SOBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 41 | $(call cmd_link_o_target, $(OBJS) $(SOBJS)) |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 42 | |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 43 | ######################################################################### |
| 44 | |
| 45 | # defines $(obj).depend target |
| 46 | include $(SRCTREE)/rules.mk |
| 47 | |
| 48 | sinclude $(obj).depend |
| 49 | |
| 50 | ######################################################################### |