wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2002-2006 |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
| 5 | # See file CREDITS for list of people who contributed to this |
| 6 | # project. |
| 7 | # |
| 8 | # This program is free software; you can redistribute it and/or |
| 9 | # modify it under the terms of the GNU General Public License as |
| 10 | # published by the Free Software Foundation; either version 2 of |
| 11 | # the License, or (at your option) any later version. |
| 12 | # |
| 13 | # This program is distributed in the hope that it will be useful, |
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | # GNU General Public License for more details. |
| 17 | # |
| 18 | # You should have received a copy of the GNU General Public License |
| 19 | # along with this program; if not, write to the Free Software |
| 20 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | # MA 02111-1307 USA |
| 22 | # |
| 23 | |
| 24 | include $(TOPDIR)/config.mk |
| 25 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 26 | LIB = $(obj)lib$(ARCH).a |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 27 | LIBGCC = $(obj)libgcc.a |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 28 | |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 29 | GLSOBJS += _ashldi3.o |
| 30 | GLSOBJS += _ashrdi3.o |
| 31 | GLSOBJS += _divsi3.o |
Heiko Schocher | deec15b | 2009-07-23 13:27:04 +0200 | [diff] [blame] | 32 | GLSOBJS += _lshrdi3.o |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 33 | GLSOBJS += _modsi3.o |
| 34 | GLSOBJS += _udivsi3.o |
| 35 | GLSOBJS += _umodsi3.o |
| 36 | |
| 37 | GLCOBJS += div0.o |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 38 | |
Marian Balakowicz | 823afe7 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 39 | COBJS-y += board.o |
| 40 | COBJS-y += bootm.o |
| 41 | COBJS-y += cache.o |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 42 | ifndef CONFIG_SYS_NO_CP15_CACHE |
| 43 | COBJS-y += cache-cp15.o |
| 44 | endif |
Marian Balakowicz | 823afe7 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 45 | COBJS-y += interrupts.o |
Jean-Christophe PLAGNIOL-VILLARD | ab29823 | 2009-04-05 13:08:03 +0200 | [diff] [blame] | 46 | COBJS-y += reset.o |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 47 | |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 48 | SRCS := $(GLSOBJS:.o=.S) $(GLCOBJS:.o=.c) \ |
| 49 | $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) |
Marian Balakowicz | 823afe7 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 50 | OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 51 | LGOBJS := $(addprefix $(obj),$(GLSOBJS)) \ |
| 52 | $(addprefix $(obj),$(GLCOBJS)) |
| 53 | |
| 54 | ifdef USE_PRIVATE_LIBGCC |
| 55 | all: $(LIB) $(LIBGCC) |
| 56 | else |
| 57 | all: $(LIB) |
| 58 | endif |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 59 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 60 | $(LIB): $(obj).depend $(OBJS) |
Wolfgang Denk | 2b208f5 | 2006-10-09 01:02:05 +0200 | [diff] [blame] | 61 | $(AR) $(ARFLAGS) $@ $(OBJS) |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 62 | |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 63 | $(LIBGCC): $(obj).depend $(LGOBJS) |
| 64 | $(AR) $(ARFLAGS) $@ $(LGOBJS) |
| 65 | |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 66 | ######################################################################### |
| 67 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 68 | # defines $(obj).depend target |
| 69 | include $(SRCTREE)/rules.mk |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 70 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 71 | sinclude $(obj).depend |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 72 | |
| 73 | ######################################################################### |