Makefile 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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
  26. ifeq ($(OSTYPE),linux)
  27. TARGETS += readelf
  28. endif
  29. ifneq ($(strip $(LIBRARY_CACHE)),)
  30. TARGETS += ldconfig
  31. endif
  32. all: $(TARGETS)
  33. ifeq ($(strip $(LDSO_LDD_SUPPORT)),y)
  34. XXFLAGS=-D__LDSO_LDD_SUPPORT
  35. endif
  36. readelf: readelf.c
  37. $(HOSTCC) $(HOSTCFLAGS) -I . readelf.c -o $@
  38. strip -x -R .note -R .comment $@
  39. readelf.target: readelf.c
  40. $(TARGET_CC) $(CFLAGS) -Wl,-s readelf.c -o $@
  41. $(STRIPTOOL) -x -R .note -R .comment $@
  42. readsoname.o: readsoname.c readsoname2.c
  43. $(HOSTCC) $(HOSTCFLAGS) -I . -c $< -o $@
  44. strip -x -R .note -R .comment $*.o
  45. ldconfig.o: ldconfig.c
  46. $(HOSTCC) $(HOSTCFLAGS) -I . \
  47. -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" -c $< -o $@
  48. strip -x -R .note -R .comment $*.o
  49. ldconfig: ldconfig.o readsoname.o
  50. $(HOSTCC) $(HOSTCFLAGS) $^ -o $@
  51. strip -x -R .note -R .comment $@
  52. ldd: ldd.c
  53. $(HOSTCC) $(HOSTCFLAGS) $(XXFLAGS) -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
  54. -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
  55. -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\" \
  56. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" -I . \
  57. ldd.c -o $@
  58. strip -x -R .note -R .comment $@
  59. ldd.target: ldd.c
  60. $(TARGET_CC) $(CFLAGS) $(XXFLAGS) -Wl,-s -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
  61. -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
  62. -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\" \
  63. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" \
  64. ldd.c -o $@
  65. $(STRIPTOOL) -x -R .note -R .comment $@
  66. clean:
  67. rm -f $(TARGETS) *.o *~ core *.target