]> Git Repo - J-u-boot.git/blame - lib/Makefile
fdt: Add tests for fdtdec
[J-u-boot.git] / lib / Makefile
CommitLineData
87e33a6f 1#
f9328639 2# (C) Copyright 2000-2006
87e33a6f
WD
3# Wolfgang Denk, DENX Software Engineering, [email protected].
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
dc254f38 43COBJS-$(CONFIG_TEST_FDTDEC) += fdtdec_test.o
44431cab 44COBJS-$(CONFIG_GZIP) += gunzip.o
a6826fbc 45COBJS-y += hashtable.o
a16028da 46COBJS-$(CONFIG_LMB) += lmb.o
f0037c56 47COBJS-y += ldiv.o
0ede0c38 48COBJS-$(CONFIG_MD5) += md5.o
6a45e384 49COBJS-y += net_utils.o
54c6977e 50COBJS-y += qsort.o
dac4d7e8 51COBJS-$(CONFIG_SHA1) += sha1.o
b571afde 52COBJS-$(CONFIG_SHA256) += sha256.o
0768b7a8 53COBJS-y += strmhz.o
05bad4aa 54COBJS-$(CONFIG_RBTREE) += rbtree.o
7029a24f
CR
55else
56COBJS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += display_options.o
05bad4aa
A
57endif
58
24de357a
MP
59ifdef CONFIG_SPL_BUILD
60COBJS-$(CONFIG_SPL_YMODEM_SUPPORT) += crc16.o
61endif
05bad4aa
A
62COBJS-y += ctype.o
63COBJS-y += div64.o
64COBJS-y += string.o
3eb90bad 65COBJS-y += time.o
e11938ea 66COBJS-$(CONFIG_BOOTP_PXE) += uuid.o
f0037c56 67COBJS-y += vsprintf.o
f0037c56
GL
68
69COBJS := $(COBJS-y)
53677ef1 70SRCS := $(COBJS:.o=.c)
f9328639 71OBJS := $(addprefix $(obj),$(COBJS))
87e33a6f 72
f9328639 73$(LIB): $(obj).depend $(OBJS)
6d8962e8 74 $(call cmd_link_o_target, $(OBJS))
87e33a6f
WD
75
76#########################################################################
77
f9328639
MB
78# defines $(obj).depend target
79include $(SRCTREE)/rules.mk
87e33a6f 80
f9328639 81sinclude $(obj).depend
87e33a6f
WD
82
83#########################################################################
This page took 0.169243 seconds and 4 git commands to generate.