Makefile 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 = elf_header 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. elf_header:
  37. ln -fs $(TOPDIR)include/elf.h
  38. readelf: readelf.c
  39. $(HOSTCC) $(HOSTCFLAGS) -I . readelf.c -o $@
  40. strip -x -R .note -R .comment $@
  41. readelf.target: readelf.c
  42. $(TARGET_CC) $(CFLAGS) -Wl,-s readelf.c -o $@
  43. $(STRIPTOOL) -x -R .note -R .comment $@
  44. readsoname.o: readsoname.c readsoname2.c
  45. $(HOSTCC) $(HOSTCFLAGS) -I . -c $< -o $@
  46. strip -x -R .note -R .comment $*.o
  47. ldconfig.o: ldconfig.c
  48. $(HOSTCC) $(HOSTCFLAGS) -I . \
  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. ldd: ldd.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 . \
  59. ldd.c -o $@
  60. strip -x -R .note -R .comment $@
  61. ldd.target: ldd.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)\" \
  66. ldd.c -o $@
  67. $(STRIPTOOL) -x -R .note -R .comment $@
  68. clean:
  69. rm -f $(TARGETS) *.o *~ core ./elf.h *.target