]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib/Makefile
Add basic errno support.
[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
f9328639 26LIB = $(obj)libgeneric.a
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
a16028da 42COBJS-$(CONFIG_LMB) += lmb.o
f0037c56 43COBJS-y += ldiv.o
0ede0c38 44COBJS-$(CONFIG_MD5) += md5.o
6a45e384 45COBJS-y += net_utils.o
dac4d7e8 46COBJS-$(CONFIG_SHA1) += sha1.o
b571afde 47COBJS-$(CONFIG_SHA256) += sha256.o
f0037c56 48COBJS-y += string.o
0768b7a8 49COBJS-y += strmhz.o
3eb90bad 50COBJS-y += time.o
f0037c56 51COBJS-y += vsprintf.o
44431cab 52COBJS-$(CONFIG_ZLIB) += zlib.o
7ba890bf 53COBJS-$(CONFIG_RBTREE) += rbtree.o
f0037c56
GL
54
55COBJS := $(COBJS-y)
53677ef1 56SRCS := $(COBJS:.o=.c)
f9328639 57OBJS := $(addprefix $(obj),$(COBJS))
87e33a6f 58
f9328639 59$(LIB): $(obj).depend $(OBJS)
2b208f53 60 $(AR) $(ARFLAGS) $@ $(OBJS)
87e33a6f
WD
61
62#########################################################################
63
f9328639
MB
64# defines $(obj).depend target
65include $(SRCTREE)/rules.mk
87e33a6f 66
f9328639 67sinclude $(obj).depend
87e33a6f
WD
68
69#########################################################################