Makefile.in 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. subdirs += utils
  7. # "make utils" flags
  8. CFLAGS-utils := \
  9. $(SSP_ALL_CFLAGS) \
  10. -I$(top_srcdir)ldso/include \
  11. -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
  12. -DUCLIBC_LDSO=$(UCLIBC_LDSO) \
  13. -I$(top_srcdir)/$(KERNEL_HEADERS) \
  14. -DNOT_IN_libc \
  15. -B$(top_builddir)lib \
  16. -Wl,-rpath-link,$(top_builddir)lib
  17. ifeq ($(UCLIBC_BUILD_PIE),y)
  18. CFLAGS-utils-shared := $(PIEFLAG) $(LDPIEFLAG)
  19. else
  20. CFLAGS-utils-shared :=
  21. endif
  22. CFLAGS-ldconfig :=
  23. ifeq ($(UCLIBC_STATIC_LDCONFIG),y)
  24. CFLAGS-ldconfig += -static
  25. else
  26. CFLAGS-ldconfig += $(CFLAGS-utils-shared)
  27. endif
  28. CFLAGS-ldd := $(CFLAGS-utils-shared)
  29. # Need CFLAGS-utils explicitly, because the source file is not located in utils
  30. CFLAGS-iconv := $(CFLAGS-utils) \
  31. $(CFLAGS-utils-shared) \
  32. -DL_iconv_main \
  33. CFLAGS-locale := $(CFLAGS-utils)
  34. # "make hostutils" flags
  35. ifeq ($(LDSO_CACHE_SUPPORT),y)
  36. LDSO_CACHE_SUPPORT := -D__LDSO_CACHE_SUPPORT__=1
  37. endif
  38. BUILD_CFLAGS-utils := \
  39. -include $(top_srcdir)include/elf.h \
  40. -I$(top_srcdir)ldso/include \
  41. -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
  42. -DUCLIBC_LDSO=$(UCLIBC_LDSO) \
  43. $(LDSO_CACHE_SUPPORT)
  44. BUILD_CFLAGS-ldconfig.host := $(BUILD_CFLAGS-utils)
  45. BUILD_CFLAGS-ldd.host := $(BUILD_CFLAGS-utils)
  46. # Rules
  47. utils_DIR := $(top_srcdir)utils
  48. utils_OUT := $(top_builddir)utils
  49. DEPS-ldconfig := $(utils_DIR)/chroot_realpath.c
  50. DEPS-ldconfig.host := $(DEPS-ldconfig)
  51. ifeq ($(HAVE_SHARED),y)
  52. utils_OBJ += ldconfig ldd
  53. endif
  54. utils_ICONV_OBJ :=
  55. utils_LOCALE_OBJ :=
  56. ifeq ($(UCLIBC_HAS_LOCALE),y)
  57. utils_ICONV_OBJ := $(utils_OUT)/iconv
  58. utils_LOCALE_OBJ := $(utils_OUT)/locale
  59. endif
  60. utils_OBJ := $(patsubst %,$(utils_OUT)/%,$(utils_OBJ))
  61. hostutils_OBJ := $(patsubst %,%.host,$(utils_OBJ))
  62. utils: $(utils_OBJ) $(utils_ICONV_OBJ) $(utils_LOCALE_OBJ)
  63. # NOTE: We build the utils AFTER we have a uClibc-targeted toolchain.
  64. $(utils_OBJ): $(utils_OUT)/% : $(utils_DIR)/%.c | $(libc)
  65. $(compile.u)
  66. $(utils_OUT)/iconv: $(top_srcdir)libc/misc/wchar/wchar.c | $(libc)
  67. $(compile.u)
  68. $(utils_OUT)/locale: $(top_srcdir)extra/locale/programs/locale.c | $(libc)
  69. $(compile.u)
  70. hostutils: $(hostutils_OBJ)
  71. $(hostutils_OBJ): $(utils_OUT)/%.host : $(utils_DIR)/%.c
  72. $(hcompile.u)
  73. install-y += utils_install
  74. # This installs both utils and hostutils, so doesn't depend on either.
  75. utils_install: $(addsuffix $(DOTHOST), $(utils_OBJ) $(utils_ICONV_OBJ) $(utils_LOCALE_OBJ))
  76. ifeq ($(HAVE_SHARED),y)
  77. $(Q)$(INSTALL) -D -m 755 $(utils_OUT)/ldd$(DOTHOST) $(PREFIX)$(DEVEL_PREFIX)bin/ldd
  78. $(Q)$(INSTALL) -D -m 755 $(utils_OUT)/ldconfig$(DOTHOST) $(PREFIX)$(RUNTIME_PREFIX)sbin/ldconfig
  79. endif
  80. ifeq ($(UCLIBC_HAS_LOCALE),y)
  81. $(Q)$(INSTALL) -D -m 755 $(utils_OUT)/iconv$(DOTHOST) $(PREFIX)$(DEVEL_PREFIX)bin/iconv
  82. $(Q)$(INSTALL) -m 755 $(utils_OUT)/locale$(DOTHOST) $(PREFIX)$(DEVEL_PREFIX)bin/locale
  83. endif
  84. objclean-y += utils_clean
  85. utils_clean:
  86. $(do_rm) $(addprefix $(utils_OUT)/, ldconfig ldd iconv locale *.host)
  87. # This is a hack..
  88. $(Q)$(RM) $(utils_OUT)/.*.dep