Makefile 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # This program is free software; you can redistribute it and/or modify it under
  6. # the terms of the GNU Library General Public License as published by the Free
  7. # Software Foundation; either version 2 of the License, or (at your option) any
  8. # later version.
  9. #
  10. # This program is distributed in the hope that it will be useful, but WITHOUT
  11. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  12. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Library General Public License
  16. # along with this program; if not, write to the Free Software Foundation, Inc.,
  17. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. #
  19. # Derived in part from the Linux-8086 C library, the GNU C Library, and several
  20. # other sundry sources. Files within this library are copyright by their
  21. # respective copyright holders.
  22. TOPDIR=../../
  23. include $(TOPDIR)Rules.mak
  24. TARGET_CC = $(TOPDIR)extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc
  25. TARGETS = ldd ldconfig
  26. ifeq ($(OSTYPE),linux)
  27. TARGETS += readelf
  28. endif
  29. #ifneq ($(strip $(LIBRARY_CACHE)),)
  30. #TARGETS += ldconfig
  31. #endif
  32. ifeq ($(strip $(LDSO_LDD_SUPPORT)),y)
  33. XXFLAGS = -D__LDSO_LDD_SUPPORT
  34. endif
  35. all: $(TARGETS)
  36. headers:
  37. ln -fs $(TOPDIR)include/elf.h
  38. readelf: readelf.c
  39. $(HOSTCC) $(HOSTCFLAGS) -I. -I../include $^ -o $@
  40. strip -x -R .note -R .comment $@
  41. readelf.target: readelf.c
  42. $(TARGET_CC) $(CFLAGS) -Wl,-s $^ -o $@
  43. $(STRIPTOOL) -x -R .note -R .comment $@
  44. readsoname.o: readsoname.c readsoname2.c
  45. $(HOSTCC) $(HOSTCFLAGS) -I. -I../include -c $< -o $@
  46. strip -x -R .note -R .comment $*.o
  47. #ldconfig.o: ldconfig.c
  48. # $(HOSTCC) $(HOSTCFLAGS) -I. -I../include \
  49. # -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" -c $< -o $@
  50. # strip -x -R .note -R .comment $*.o
  51. #ldconfig: ldconfig.o readsoname.o
  52. # $(HOSTCC) $(HOSTCFLAGS) $^ -o $@
  53. # strip -x -R .note -R .comment $@
  54. ldconfig: ldconfig.c readsoname.c
  55. $(HOSTCC) $(HOSTCFLAGS) $(XXFLAGS) -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
  56. -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
  57. -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\" \
  58. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" -I. -I../include \
  59. $^ -o $@
  60. strip -x -R .note -R .comment $@
  61. ldconfig.target: ldconfig.c readsoname.c
  62. $(TARGET_CC) $(CFLAGS) $(XXFLAGS) -Wl,-s -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
  63. -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
  64. -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\" \
  65. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" -I. -I../include \
  66. $^ -o $@
  67. $(STRIPTOOL) -x -R .note -R .comment $@
  68. ldd: ldd.c
  69. $(HOSTCC) $(HOSTCFLAGS) $(XXFLAGS) -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
  70. -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
  71. -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\" \
  72. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" -I. -I../include \
  73. $^ -o $@
  74. strip -x -R .note -R .comment $@
  75. ldd.target: ldd.c
  76. $(TARGET_CC) $(CFLAGS) $(XXFLAGS) -Wl,-s -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
  77. -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
  78. -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\" \
  79. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" \
  80. $^ -o $@
  81. $(STRIPTOOL) -x -R .note -R .comment $@
  82. clean:
  83. $(RM) $(TARGETS) *.o *~ core *.target elf.h
  84. readelf.c readsoname.c ldconfig.c ldd.c: headers