]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib_generic/Makefile
Delay FIT format check on sector based devices
[people/ms/u-boot.git] / lib_generic / 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
f0037c56
GL
28COBJS-y += bzlib.o
29COBJS-y += bzlib_crctable.o
30COBJS-y += bzlib_decompress.o
31COBJS-y += bzlib_randtable.o
32COBJS-y += bzlib_huffman.o
33COBJS-y += crc32.o
34COBJS-y += ctype.o
35COBJS-y += display_options.o
36COBJS-y += div64.o
4ed6552f 37COBJS-y += lmb.o
f0037c56 38COBJS-y += ldiv.o
0ede0c38 39COBJS-$(CONFIG_MD5) += md5.o
f0037c56
GL
40COBJS-y += sha1.o
41COBJS-y += string.o
42COBJS-y += vsprintf.o
43COBJS-y += zlib.o
44
45COBJS := $(COBJS-y)
53677ef1 46SRCS := $(COBJS:.o=.c)
f9328639 47OBJS := $(addprefix $(obj),$(COBJS))
87e33a6f 48
f9328639 49$(LIB): $(obj).depend $(OBJS)
2b208f53 50 $(AR) $(ARFLAGS) $@ $(OBJS)
87e33a6f
WD
51
52#########################################################################
53
f9328639
MB
54# defines $(obj).depend target
55include $(SRCTREE)/rules.mk
87e33a6f 56
f9328639 57sinclude $(obj).depend
87e33a6f
WD
58
59#########################################################################