Kbuild.src 913 B

12345678910111213141516171819202122232425
  1. # Makefile for busybox
  2. #
  3. # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
  4. #
  5. # Licensed under GPLv2, see file LICENSE in this source tree.
  6. libs-y += libcoreutils/
  7. lib-y:=
  8. INSERT
  9. lib-$(CONFIG_MORE) += cat.o # more uses it if stdout isn't a tty
  10. lib-$(CONFIG_LESS) += cat.o # less too
  11. lib-$(CONFIG_CRONTAB) += cat.o # crontab -l
  12. lib-$(CONFIG_ADDUSER) += chown.o # used by adduser
  13. lib-$(CONFIG_ADDGROUP) += chown.o # used by adduser
  14. lib-$(CONFIG_ASH) += echo.o # used by ash
  15. lib-$(CONFIG_SH_IS_ASH) += echo.o # used by ash
  16. lib-$(CONFIG_BASH_IS_ASH) += echo.o # used by ash
  17. lib-$(CONFIG_HUSH) += echo.o # used by hush
  18. lib-$(CONFIG_SH_IS_HUSH) += echo.o # used by hush
  19. lib-$(CONFIG_BASH_IS_HUSH) += echo.o # used by hush
  20. lib-$(CONFIG_FTPD) += ls.o # used by ftpd
  21. lib-$(CONFIG_ASH_BUILTIN_PRINTF) += printf.o