Kbuild.src 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # Makefile for busybox
  2. #
  3. # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  4. #
  5. # Licensed under GPLv2 or later, see file LICENSE in this source tree.
  6. lib-y:=
  7. COMMON_FILES:= \
  8. \
  9. data_skip.o \
  10. data_extract_all.o \
  11. data_extract_to_stdout.o \
  12. \
  13. filter_accept_all.o \
  14. filter_accept_list.o \
  15. filter_accept_reject_list.o \
  16. \
  17. header_skip.o \
  18. header_list.o \
  19. header_verbose_list.o \
  20. \
  21. seek_by_read.o \
  22. seek_by_jump.o \
  23. \
  24. data_align.o \
  25. find_list_entry.o \
  26. init_handle.o
  27. DPKG_FILES:= \
  28. get_header_ar.o \
  29. unpack_ar_archive.o \
  30. get_header_tar.o \
  31. filter_accept_list_reassign.o
  32. INSERT
  33. lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o
  34. lib-$(CONFIG_BUNZIP2) += decompress_bunzip2.o
  35. lib-$(CONFIG_UNLZMA) += decompress_unlzma.o
  36. lib-$(CONFIG_UNXZ) += decompress_unxz.o
  37. lib-$(CONFIG_CPIO) += get_header_cpio.o
  38. lib-$(CONFIG_DPKG) += $(DPKG_FILES)
  39. lib-$(CONFIG_DPKG_DEB) += $(DPKG_FILES)
  40. lib-$(CONFIG_GUNZIP) += decompress_unzip.o
  41. lib-$(CONFIG_RPM2CPIO) += decompress_unzip.o get_header_cpio.o
  42. lib-$(CONFIG_RPM) += open_transformer.o decompress_unzip.o get_header_cpio.o
  43. lib-$(CONFIG_TAR) += get_header_tar.o
  44. lib-$(CONFIG_UNCOMPRESS) += decompress_uncompress.o
  45. lib-$(CONFIG_UNZIP) += decompress_unzip.o
  46. lib-$(CONFIG_LZOP) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o
  47. lib-$(CONFIG_LZOP_COMPR_HIGH) += lzo1x_9x.o
  48. lib-$(CONFIG_FEATURE_SEAMLESS_Z) += open_transformer.o decompress_uncompress.o
  49. lib-$(CONFIG_FEATURE_SEAMLESS_GZ) += open_transformer.o decompress_unzip.o get_header_tar_gz.o
  50. lib-$(CONFIG_FEATURE_SEAMLESS_BZ2) += open_transformer.o decompress_bunzip2.o get_header_tar_bz2.o
  51. lib-$(CONFIG_FEATURE_SEAMLESS_LZMA) += open_transformer.o decompress_unlzma.o get_header_tar_lzma.o
  52. lib-$(CONFIG_FEATURE_SEAMLESS_XZ) += open_transformer.o decompress_unxz.o
  53. lib-$(CONFIG_FEATURE_COMPRESS_USAGE) += decompress_bunzip2.o
  54. lib-$(CONFIG_FEATURE_COMPRESS_BBCONFIG) += decompress_bunzip2.o
  55. lib-$(CONFIG_FEATURE_TAR_TO_COMMAND) += data_extract_to_command.o
  56. ifneq ($(lib-y),)
  57. lib-y += $(COMMON_FILES)
  58. endif