Makefile 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 $@ $(LDADD_LIBFLOAT)
  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: ldconfig.c readsoname.c
  48. $(HOSTCC) $(HOSTCFLAGS) $(XXFLAGS) \
  49. -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
  50. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" -I. -I../include \
  51. $^ -o $@
  52. strip -x -R .note -R .comment $@
  53. ldconfig.target: ldconfig.c readsoname.c
  54. $(TARGET_CC) $(CFLAGS) $(XXFLAGS) -Wl,-s \
  55. -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
  56. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" -I. -I../include \
  57. $^ -o $@ $(LDADD_LIBFLOAT)
  58. $(STRIPTOOL) -x -R .note -R .comment $@
  59. ldd: ldd.c
  60. $(HOSTCC) $(HOSTCFLAGS) $(XXFLAGS) \
  61. -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
  62. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" -I. -I../include \
  63. $^ -o $@
  64. strip -x -R .note -R .comment $@
  65. ldd.target: ldd.c
  66. $(TARGET_CC) $(CFLAGS) $(XXFLAGS) -Wl,-s \
  67. -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
  68. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" \
  69. $^ -o $@ $(LDADD_LIBFLOAT)
  70. $(STRIPTOOL) -x -R .note -R .comment $@
  71. clean:
  72. $(RM) $(TARGETS) *.o *~ core *.target elf.h
  73. readelf.c readsoname.c ldconfig.c ldd.c: headers