diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2009-11-09 21:17:50 (GMT) |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-12-02 22:19:32 (GMT) |
commit | 9ef78511cda39987e5fc10febf386fd19f58ecf7 (patch) | |
tree | 138195677feb52131cf7f4074739901a7be101cf /lib_generic/Makefile | |
parent | 604f7ce55ad74694ef8743ad2e99933dc0265e46 (diff) | |
download | u-boot-fsl-qoriq-9ef78511cda39987e5fc10febf386fd19f58ecf7.tar.xz |
circbuf: Move to lib_generic and conditionally compile
circbuf could be used as a generic library and is only currently
needed when CONFIG_USB_TTY is defined.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'lib_generic/Makefile')
-rw-r--r-- | lib_generic/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib_generic/Makefile b/lib_generic/Makefile index 686601c..2ec261a 100644 --- a/lib_generic/Makefile +++ b/lib_generic/Makefile @@ -31,6 +31,7 @@ COBJS-$(CONFIG_BZIP2) += bzlib_crctable.o COBJS-$(CONFIG_BZIP2) += bzlib_decompress.o COBJS-$(CONFIG_BZIP2) += bzlib_randtable.o COBJS-$(CONFIG_BZIP2) += bzlib_huffman.o +COBJS-$(CONFIG_USB_TTY) += circbuf.o COBJS-y += crc16.o COBJS-y += crc32.o COBJS-y += ctype.o |