]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib/Makefile
NAND: add NAND_CMD_PARAM (0xec) definition
[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
63240ba8 28COBJS-$(CONFIG_ADDR_MAP) += addr_map.o
ab76e984
MF
29COBJS-$(CONFIG_BZIP2) += bzlib.o
30COBJS-$(CONFIG_BZIP2) += bzlib_crctable.o
31COBJS-$(CONFIG_BZIP2) += bzlib_decompress.o
32COBJS-$(CONFIG_BZIP2) += bzlib_randtable.o
33COBJS-$(CONFIG_BZIP2) += bzlib_huffman.o
9ef78511 34COBJS-$(CONFIG_USB_TTY) += circbuf.o
bbf52df9 35COBJS-y += crc16.o
f0037c56
GL
36COBJS-y += crc32.o
37COBJS-y += ctype.o
38COBJS-y += display_options.o
39COBJS-y += div64.o
65cd3fa8 40COBJS-y += errno.o
44431cab 41COBJS-$(CONFIG_GZIP) += gunzip.o
a6826fbc 42COBJS-y += hashtable.o
a16028da 43COBJS-$(CONFIG_LMB) += lmb.o
f0037c56 44COBJS-y += ldiv.o
0ede0c38 45COBJS-$(CONFIG_MD5) += md5.o
6a45e384 46COBJS-y += net_utils.o
54c6977e 47COBJS-y += qsort.o
dac4d7e8 48COBJS-$(CONFIG_SHA1) += sha1.o
b571afde 49COBJS-$(CONFIG_SHA256) += sha256.o
f0037c56 50COBJS-y += string.o
0768b7a8 51COBJS-y += strmhz.o
3eb90bad 52COBJS-y += time.o
f0037c56 53COBJS-y += vsprintf.o
44431cab 54COBJS-$(CONFIG_ZLIB) += zlib.o
7ba890bf 55COBJS-$(CONFIG_RBTREE) += rbtree.o
f0037c56
GL
56
57COBJS := $(COBJS-y)
53677ef1 58SRCS := $(COBJS:.o=.c)
f9328639 59OBJS := $(addprefix $(obj),$(COBJS))
87e33a6f 60
f9328639 61$(LIB): $(obj).depend $(OBJS)
6d8962e8 62 $(call cmd_link_o_target, $(OBJS))
87e33a6f
WD
63
64#########################################################################
65
f9328639
MB
66# defines $(obj).depend target
67include $(SRCTREE)/rules.mk
87e33a6f 68
f9328639 69sinclude $(obj).depend
87e33a6f
WD
70
71#########################################################################