blob: 3f040226e0e8d6417620eec63d377743ef76c372 [file] [log] [blame]
wdenk87e33a62002-07-20 18:56:22 +00001#
Marian Balakowiczd62379d2006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenk87e33a62002-07-20 18:56:22 +00003# 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
24include $(TOPDIR)/config.mk
25
Marian Balakowiczd62379d2006-09-01 19:49:50 +020026LIB = $(obj)libgeneric.a
wdenk87e33a62002-07-20 18:56:22 +000027
Kumar Gala0949bd12008-12-13 17:20:28 -060028COBJS-$(CONFIG_ADDR_MAP) += addr_map.o
Grant Likely1179ad12007-09-24 09:05:30 -060029COBJS-y += bzlib.o
30COBJS-y += bzlib_crctable.o
31COBJS-y += bzlib_decompress.o
32COBJS-y += bzlib_randtable.o
33COBJS-y += bzlib_huffman.o
Jean-Christophe PLAGNIOL-VILLARD9ec67ee2008-08-29 01:18:11 +020034COBJS-y += crc16.o
Grant Likely1179ad12007-09-24 09:05:30 -060035COBJS-y += crc32.o
36COBJS-y += ctype.o
37COBJS-y += display_options.o
38COBJS-y += div64.o
Jean-Christophe PLAGNIOL-VILLARDb8ec24c2008-08-28 12:31:48 +020039COBJS-y += gunzip.o
Kumar Gala6d7bfa82008-02-27 21:51:47 -060040COBJS-y += lmb.o
Grant Likely1179ad12007-09-24 09:05:30 -060041COBJS-y += ldiv.o
Bartlomiej Siekab0ce3522008-03-14 16:22:34 +010042COBJS-$(CONFIG_MD5) += md5.o
Grant Likely1179ad12007-09-24 09:05:30 -060043COBJS-y += sha1.o
Jean-Christophe PLAGNIOL-VILLARDc58a6b82008-06-07 12:29:52 +020044COBJS-$(CONFIG_SHA256) += sha256.o
Grant Likely1179ad12007-09-24 09:05:30 -060045COBJS-y += string.o
Haavard Skinnemoenb644d6b2008-08-18 13:41:27 +020046COBJS-y += strmhz.o
Grant Likely1179ad12007-09-24 09:05:30 -060047COBJS-y += vsprintf.o
48COBJS-y += zlib.o
Kyungmin Park06be5b92008-10-08 11:01:17 +090049COBJS-$(CONFIG_RBTREE) += rbtree.o
Wolfgang Denk4df0da52006-10-09 00:42:01 +020050
Grant Likely1179ad12007-09-24 09:05:30 -060051COBJS := $(COBJS-y)
Wolfgang Denka1be4762008-05-20 16:00:29 +020052SRCS := $(COBJS:.o=.c)
Marian Balakowiczd62379d2006-09-01 19:49:50 +020053OBJS := $(addprefix $(obj),$(COBJS))
wdenk87e33a62002-07-20 18:56:22 +000054
Marian Balakowiczd62379d2006-09-01 19:49:50 +020055$(LIB): $(obj).depend $(OBJS)
Wolfgang Denk6a65e422006-10-09 01:02:05 +020056 $(AR) $(ARFLAGS) $@ $(OBJS)
wdenk87e33a62002-07-20 18:56:22 +000057
58#########################################################################
59
Marian Balakowiczd62379d2006-09-01 19:49:50 +020060# defines $(obj).depend target
61include $(SRCTREE)/rules.mk
wdenk87e33a62002-07-20 18:56:22 +000062
Marian Balakowiczd62379d2006-09-01 19:49:50 +020063sinclude $(obj).depend
wdenk87e33a62002-07-20 18:56:22 +000064
65#########################################################################