Tom Rix | 23b8098 | 2009-09-27 11:10:09 -0500 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2003-2008 |
| 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
| 5 | # (C) Copyright 2008 |
| 6 | # Stelian Pop <stelian.pop@leadtechdesign.com |
| 7 | # Lead Tech Design <www.leadtechdesign.com> |
| 8 | # Ilko Iliev <www.ronetix.at> |
| 9 | # |
| 10 | # (C) Copyright 2009 |
| 11 | # Eric Benard <eric@eukrea.com> |
| 12 | # |
| 13 | # See file CREDITS for list of people who contributed to this |
| 14 | # project. |
| 15 | # |
| 16 | # This program is free software; you can redistribute it and/or |
| 17 | # modify it under the terms of the GNU General Public License as |
| 18 | # published by the Free Software Foundation; either version 2 of |
| 19 | # the License, or (at your option) any later version. |
| 20 | # |
| 21 | # This program is distributed in the hope that it will be useful, |
| 22 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 23 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 24 | # GNU General Public License for more details. |
| 25 | # |
| 26 | # You should have received a copy of the GNU General Public License |
| 27 | # along with this program; if not, write to the Free Software |
| 28 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 29 | # MA 02111-1307 USA |
| 30 | # |
| 31 | |
| 32 | include $(TOPDIR)/config.mk |
| 33 | |
| 34 | LIB = $(obj)lib$(BOARD).a |
| 35 | |
| 36 | COBJS-y += $(BOARD).o |
| 37 | COBJS-y += led.o |
| 38 | |
| 39 | SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c) |
| 40 | OBJS := $(addprefix $(obj),$(COBJS-y) $(SOBJS)) |
| 41 | SOBJS := $(addprefix $(obj),$(SOBJS)) |
| 42 | |
| 43 | $(LIB): $(obj).depend $(OBJS) $(SOBJS) |
| 44 | $(AR) $(ARFLAGS) $@ $(OBJS) |
| 45 | |
| 46 | clean: |
| 47 | rm -f $(SOBJS) $(OBJS) |
| 48 | |
| 49 | distclean: clean |
| 50 | rm -f $(LIB) core *.bak $(obj).depend |
| 51 | |
| 52 | ######################################################################### |
| 53 | |
| 54 | # defines $(obj).depend target |
| 55 | include $(SRCTREE)/rules.mk |
| 56 | |
| 57 | sinclude $(obj).depend |
| 58 | |
| 59 | ######################################################################### |