Makefile.in 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. # Makefile for busybox
  2. #
  3. # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
  4. #
  5. # Licensed under the GPL v2, see the file LICENSE in this tarball.
  6. ifndef $(LIBBB_DIR)
  7. LIBBB_DIR:=$(top_builddir)/libbb
  8. endif
  9. srcdir=$(top_srcdir)/libbb
  10. LIBBB-n:=
  11. LIBBB-y:= \
  12. bb_asprintf.c ask_confirmation.c change_identity.c chomp.c \
  13. compare_string_array.c concat_path_file.c copy_file.c copyfd.c \
  14. create_icmp_socket.c create_icmp6_socket.c \
  15. device_open.c dump.c error_msg.c error_msg_and_die.c find_mount_point.c \
  16. find_pid_by_name.c find_root_device.c fgets_str.c full_read.c \
  17. full_write.c get_last_path_component.c get_line_from_file.c \
  18. herror_msg.c herror_msg_and_die.c \
  19. human_readable.c inet_common.c inode_hash.c isdirectory.c \
  20. kernel_version.c last_char_is.c login.c \
  21. make_directory.c md5.c mode_string.c mtab_file.c \
  22. obscure.c parse_mode.c parse_number.c perror_msg.c \
  23. perror_msg_and_die.c print_file.c get_console.c \
  24. process_escape_sequence.c procps.c qmodule.c \
  25. read_package_field.c recursive_action.c remove_file.c \
  26. restricted_shell.c run_parts.c run_shell.c safe_read.c safe_write.c \
  27. safe_strncpy.c setup_environment.c sha1.c simplify_path.c \
  28. trim.c u_signal_names.c vdprintf.c verror_msg.c \
  29. vherror_msg.c vperror_msg.c wfopen.c xconnect.c xgetcwd.c xstat.c \
  30. xgethostbyname.c xgethostbyname2.c xreadlink.c xregcomp.c xgetlarg.c \
  31. get_terminal_width_height.c fclose_nonstdin.c fflush_stdout_and_exit.c \
  32. getopt_ulflags.c default_error_retval.c wfopen_input.c speed_table.c \
  33. perror_nomsg_and_die.c perror_nomsg.c skip_whitespace.c bb_askpass.c \
  34. warn_ignoring_args.c concat_subpath_file.c vfork_daemon_rexec.c \
  35. bb_echo.c bb_do_delay.c
  36. # conditionally compiled objects:
  37. LIBBB-$(CONFIG_FEATURE_SHADOWPASSWDS)+=pwd2spwd.c
  38. LIBBB-$(CONFIG_FEATURE_MOUNT_LOOP)+= loop.c
  39. LIBBB-$(CONFIG_LOSETUP)+= loop.c
  40. LIBBB-$(CONFIG_FEATURE_MTAB_SUPPORT)+= mtab.c
  41. LIBBB-$(CONFIG_PASSWD)+= pw_encrypt.c
  42. LIBBB-$(CONFIG_SULOGIN)+= pw_encrypt.c
  43. LIBBB-$(CONFIG_FEATURE_HTTPD_AUTH_MD5)+= pw_encrypt.c
  44. LIBBB-$(CONFIG_VLOCK)+= correct_password.c
  45. LIBBB-$(CONFIG_SU)+= correct_password.c
  46. LIBBB-$(CONFIG_LOGIN)+= correct_password.c
  47. LIBBB-y:=$(patsubst %,$(srcdir)/%,$(LIBBB-y))
  48. # 1:N objects
  49. LIBBB_MSRC0:=$(srcdir)/messages.c
  50. LIBBB_MOBJ0:=full_version.o \
  51. memory_exhausted.o invalid_date.o io_error.o \
  52. read_error.o write_error.o name_longer_than_foo.o unknown.o \
  53. can_not_create_raw_socket.o perm_denied_are_you_root.o \
  54. shadow_file.o passwd_file.o group_file.o gshadow_file.o nologin_file.o \
  55. securetty_file.o motd_file.o \
  56. msg_standard_input.o msg_standard_output.o shell_file.o \
  57. bb_dev_null.o bb_common_bufsiz1.o
  58. LIBBB_MOBJ0:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ0))
  59. $(LIBBB_MOBJ0):$(LIBBB_MSRC0)
  60. $(compile.c) -DL_$(notdir $*)
  61. LIBBB_MSRC1:=$(srcdir)/xfuncs.c
  62. LIBBB_MOBJ1:=xmalloc.o xrealloc.o xcalloc.o xstrdup.o xstrndup.o \
  63. xfopen.o xopen.o xread.o xread_all.o xread_char.o \
  64. xferror.o xferror_stdout.o xfflush_stdout.o strlen.o
  65. LIBBB_MOBJ1:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ1))
  66. $(LIBBB_MOBJ1):$(LIBBB_MSRC1)
  67. $(compile.c) -DL_$(notdir $*)
  68. LIBBB_MSRC2:=$(srcdir)/printf.c
  69. LIBBB_MOBJ2:=bb_vfprintf.o bb_vprintf.o bb_fprintf.o bb_printf.o
  70. LIBBB_MOBJ2:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ2))
  71. $(LIBBB_MOBJ2):$(LIBBB_MSRC2)
  72. $(compile.c) -DL_$(notdir $*)
  73. LIBBB_MSRC3:=$(srcdir)/xgetularg.c
  74. LIBBB_MOBJ3:=xgetularg_bnd_sfx.o xgetlarg_bnd_sfx.o getlarg10_sfx.o \
  75. xgetularg_bnd.o xgetularg10_bnd.o xgetularg10.o
  76. LIBBB_MOBJ3:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ3))
  77. $(LIBBB_MOBJ3):$(LIBBB_MSRC3)
  78. $(compile.c) -DL_$(notdir $*)
  79. LIBBB_MSRC4:=$(srcdir)/safe_strtol.c
  80. LIBBB_MOBJ4:=safe_strtoi.o safe_strtod.o safe_strtol.o safe_strtoul.o
  81. LIBBB_MOBJ4:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ4))
  82. $(LIBBB_MOBJ4):$(LIBBB_MSRC4)
  83. $(compile.c) -DL_$(notdir $*)
  84. LIBBB_MSRC5:=$(srcdir)/bb_pwd.c
  85. LIBBB_MOBJ5:=bb_xgetpwnam.o bb_xgetgrnam.o bb_getgrgid.o bb_getpwuid.o \
  86. bb_getug.o get_ug_id.o
  87. LIBBB_MOBJ5:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ5))
  88. $(LIBBB_MOBJ5):$(LIBBB_MSRC5)
  89. $(compile.c) -DL_$(notdir $*)
  90. LIBBB_MSRC6:=$(srcdir)/llist.c
  91. LIBBB_MOBJ6:=llist_add_to.o llist_add_to_end.o llist_free_one.o llist_free.o
  92. LIBBB_MOBJ6:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ6))
  93. $(LIBBB_MOBJ6):$(LIBBB_MSRC6)
  94. $(compile.c) -DL_$(notdir $*)
  95. # We need the names of the object files built from MSRC for the L_ defines
  96. LIBBB_ALL_MOBJ:=$(LIBBB_MOBJ0) $(LIBBB_MOBJ1) $(LIBBB_MOBJ2) $(LIBBB_MOBJ3) $(LIBBB_MOBJ4) $(LIBBB_MOBJ5) $(LIBBB_MOBJ6)
  97. LIBBB_ALL_MSRC:=$(LIBBB_MSRC0) $(LIBBB_MSRC1) $(LIBBB_MSRC2) $(LIBBB_MSRC3) \
  98. $(LIBBB_MSRC4) $(LIBBB_MSRC5) $(LIBBB_MSRC6)
  99. LIBBB-y:=$(sort $(LIBBB-y) $(LIBBB_ALL_MSRC))
  100. LIBBB_AR:=$(LIBBB_DIR)/libbb.a
  101. libraries-y+=$(LIBBB_AR)
  102. needcrypt-y:=
  103. ifneq ($(findstring $(srcdir)/pw_encrypt.c,$(LIBBB-y)),)
  104. needcrypt-y:=y
  105. else
  106. ifneq ($(findstring $(srcdir)/correct_password.c,$(LIBBB-y)),)
  107. needcrypt-y:=y
  108. endif
  109. endif
  110. ifeq ($(needcrypt-y),y)
  111. LIBRARIES := -lcrypt $(filter-out -lcrypt,$(LIBRARIES))
  112. endif
  113. # all 1:1 objects
  114. LIBBB_OBJS:=$(patsubst $(srcdir)/%.c,$(LIBBB_DIR)/%.o, $(LIBBB-y))
  115. $(LIBBB_DIR)/%.o: $(srcdir)/%.c
  116. $(compile.c)
  117. LIBBB_SRC-a:=$(wildcard $(srcdir)/*.c)
  118. LIBRARY_SRC-y+=$(LIBBB-y)
  119. LIBRARY_SRC-a+=$(LIBBB_SRC-a)
  120. # all defines needed for 1:N objects
  121. LIBBB_DEFINE-y:=$(patsubst %,-DL_%,$(subst .o,,$(notdir $(LIBBB_ALL_MOBJ))))
  122. LIBRARY_DEFINE-y+=$(LIBBB_DEFINE-y)
  123. LIBRARY_DEFINE-a+=$(LIBBB_DEFINE-y)
  124. $(LIBBB_AR): $(LIBBB_OBJS) $(LIBBB_ALL_MOBJ)
  125. $(do_ar)