]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib/Makefile
nand: Merge BCH code from Linux nand driver
[people/ms/u-boot.git] / lib / Makefile
CommitLineData
87e33a6f 1#
f9328639 2# (C) Copyright 2000-2006
87e33a6f
WD
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
24include $(TOPDIR)/config.mk
25
6d8962e8 26LIB = $(obj)libgeneric.o
87e33a6f 27
05bad4aa 28ifndef CONFIG_SPL_BUILD
63240ba8 29COBJS-$(CONFIG_ADDR_MAP) += addr_map.o
4c6de856 30COBJS-$(CONFIG_BCH) += bch.o
ab76e984
MF
31COBJS-$(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
9ef78511 36COBJS-$(CONFIG_USB_TTY) += circbuf.o
ed6ce67a 37COBJS-y += crc7.o
bbf52df9 38COBJS-y += crc16.o
f0037c56 39COBJS-y += crc32.o
f0037c56 40COBJS-y += display_options.o
65cd3fa8 41COBJS-y += errno.o
b5220bc6 42COBJS-$(CONFIG_OF_CONTROL) += fdtdec.o
44431cab 43COBJS-$(CONFIG_GZIP) += gunzip.o
a6826fbc 44COBJS-y += hashtable.o
a16028da 45COBJS-$(CONFIG_LMB) += lmb.o
f0037c56 46COBJS-y += ldiv.o
0ede0c38 47COBJS-$(CONFIG_MD5) += md5.o
6a45e384 48COBJS-y += net_utils.o
54c6977e 49COBJS-y += qsort.o
dac4d7e8 50COBJS-$(CONFIG_SHA1) += sha1.o
b571afde 51COBJS-$(CONFIG_SHA256) += sha256.o
0768b7a8 52COBJS-y += strmhz.o
05bad4aa 53COBJS-$(CONFIG_RBTREE) += rbtree.o
7029a24f
CR
54else
55COBJS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += display_options.o
05bad4aa
A
56endif
57
58COBJS-y += ctype.o
59COBJS-y += div64.o
60COBJS-y += string.o
3eb90bad 61COBJS-y += time.o
e11938ea 62COBJS-$(CONFIG_BOOTP_PXE) += uuid.o
f0037c56 63COBJS-y += vsprintf.o
f0037c56
GL
64
65COBJS := $(COBJS-y)
53677ef1 66SRCS := $(COBJS:.o=.c)
f9328639 67OBJS := $(addprefix $(obj),$(COBJS))
87e33a6f 68
f9328639 69$(LIB): $(obj).depend $(OBJS)
6d8962e8 70 $(call cmd_link_o_target, $(OBJS))
87e33a6f
WD
71
72#########################################################################
73
f9328639
MB
74# defines $(obj).depend target
75include $(SRCTREE)/rules.mk
87e33a6f 76
f9328639 77sinclude $(obj).depend
87e33a6f
WD
78
79#########################################################################