blob: e6e6ec63779be056942565c0bc515e35e8528285 [file] [log] [blame]
wdenk87e33a62002-07-20 18:56:22 +00001#
Marian Balakowiczf9328632006-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
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010026LIB = $(obj)libgeneric.o
wdenk87e33a62002-07-20 18:56:22 +000027
Aneesh V05bad4a2011-07-13 05:11:06 +000028ifndef CONFIG_SPL_BUILD
Kumar Gala63240ba2008-12-13 17:20:28 -060029COBJS-$(CONFIG_ADDR_MAP) += addr_map.o
Christian Hitz4c6de852011-10-12 09:31:59 +020030COBJS-$(CONFIG_BCH) += bch.o
Mike Frysingerab76e982009-02-05 21:04:50 -050031COBJS-$(CONFIG_BZIP2) += bzlib.o
32COBJS-$(CONFIG_BZIP2) += bzlib_crctable.o
33COBJS-$(CONFIG_BZIP2) += bzlib_decompress.o
34COBJS-$(CONFIG_BZIP2) += bzlib_randtable.o
35COBJS-$(CONFIG_BZIP2) += bzlib_huffman.o
Peter Tyser9ef78512009-11-09 15:17:50 -060036COBJS-$(CONFIG_USB_TTY) += circbuf.o
Thomas Choued6ce672011-01-11 09:38:20 +080037COBJS-y += crc7.o
Jean-Christophe PLAGNIOL-VILLARDbbf52df2008-08-29 01:18:11 +020038COBJS-y += crc16.o
Grant Likelyf0037c52007-09-24 09:05:30 -060039COBJS-y += crc32.o
Grant Likelyf0037c52007-09-24 09:05:30 -060040COBJS-y += display_options.o
Wolfgang Denk65cd3fa2010-06-12 00:19:46 +020041COBJS-y += errno.o
Simon Glassb5220bc2011-10-24 19:15:32 +000042COBJS-$(CONFIG_OF_CONTROL) += fdtdec.o
Mike Frysinger44431ca2010-01-21 19:30:36 -050043COBJS-$(CONFIG_GZIP) += gunzip.o
Wolfgang Denka6826fb2010-06-20 13:17:12 +020044COBJS-y += hashtable.o
Mike Frysingera16028d2009-11-03 11:35:59 -050045COBJS-$(CONFIG_LMB) += lmb.o
Grant Likelyf0037c52007-09-24 09:05:30 -060046COBJS-y += ldiv.o
Bartlomiej Sieka0ede0c32008-03-14 16:22:34 +010047COBJS-$(CONFIG_MD5) += md5.o
Dirk Behme6a45e382010-01-03 08:33:58 +010048COBJS-y += net_utils.o
Wolfgang Denk54c69772010-06-13 01:45:10 +020049COBJS-y += qsort.o
Mike Frysingerdac4d7e2010-01-17 21:08:00 -050050COBJS-$(CONFIG_SHA1) += sha1.o
Jean-Christophe PLAGNIOL-VILLARDb571afd2008-06-07 12:29:52 +020051COBJS-$(CONFIG_SHA256) += sha256.o
Haavard Skinnemoen0768b7a2008-08-18 13:41:27 +020052COBJS-y += strmhz.o
Aneesh V05bad4a2011-07-13 05:11:06 +000053COBJS-$(CONFIG_RBTREE) += rbtree.o
Christian Riesch7029a242011-12-09 09:47:34 +000054else
55COBJS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += display_options.o
Aneesh V05bad4a2011-07-13 05:11:06 +000056endif
57
58COBJS-y += ctype.o
59COBJS-y += div64.o
60COBJS-y += string.o
Ingo van Lil3eb90ba2009-11-24 14:09:21 +010061COBJS-y += time.o
Jason Hobbse11938e2011-08-23 11:06:56 +000062COBJS-$(CONFIG_BOOTP_PXE) += uuid.o
Grant Likelyf0037c52007-09-24 09:05:30 -060063COBJS-y += vsprintf.o
Wolfgang Denk511d0c72006-10-09 00:42:01 +020064
Grant Likelyf0037c52007-09-24 09:05:30 -060065COBJS := $(COBJS-y)
Wolfgang Denk53677ef2008-05-20 16:00:29 +020066SRCS := $(COBJS:.o=.c)
Marian Balakowiczf9328632006-09-01 19:49:50 +020067OBJS := $(addprefix $(obj),$(COBJS))
wdenk87e33a62002-07-20 18:56:22 +000068
Marian Balakowiczf9328632006-09-01 19:49:50 +020069$(LIB): $(obj).depend $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010070 $(call cmd_link_o_target, $(OBJS))
wdenk87e33a62002-07-20 18:56:22 +000071
72#########################################################################
73
Marian Balakowiczf9328632006-09-01 19:49:50 +020074# defines $(obj).depend target
75include $(SRCTREE)/rules.mk
wdenk87e33a62002-07-20 18:56:22 +000076
Marian Balakowiczf9328632006-09-01 19:49:50 +020077sinclude $(obj).depend
wdenk87e33a62002-07-20 18:56:22 +000078
79#########################################################################