Makefile 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. elf_header:
  34. ln -fs $(TOPDIR)include/elf.h
  35. readelf: readelf.c
  36. $(NATIVE_CC) $(NATIVE_CFLAGS) -I . readelf.c -o $@
  37. strip -x -R .note -R .comment $@
  38. readelf.target: readelf.c
  39. $(TARGET_CC) $(CFLAGS) --uclibc-use-build-dir -Wl,-s readelf.c -o $@
  40. $(STRIPTOOL) -x -R .note -R .comment $@
  41. readsoname.o: readsoname.c readsoname2.c
  42. $(NATIVE_CC) $(NATIVE_CFLAGS) -I . -c $< -o $@
  43. strip -x -R .note -R .comment $*.o
  44. ldconfig.o: ldconfig.c
  45. $(NATIVE_CC) $(NATIVE_CFLAGS) -I . \
  46. -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" -c $< -o $@
  47. strip -x -R .note -R .comment $*.o
  48. ldconfig: ldconfig.o readsoname.o
  49. $(NATIVE_CC) $(NATIVE_CFLAGS) $^ -o $@
  50. strip -x -R .note -R .comment $@
  51. ldd: ldd.c
  52. $(NATIVE_CC) $(NATIVE_CFLAGS) -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
  53. -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
  54. -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\" \
  55. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" -I . \
  56. ldd.c -o $@
  57. strip -x -R .note -R .comment $@
  58. ldd.target: ldd.c
  59. $(TARGET_CC) $(CFLAGS) -Wl,-s -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
  60. -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
  61. -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\" \
  62. -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" \
  63. ldd.c -o $@
  64. $(STRIPTOOL) -x -R .note -R .comment $@
  65. clean:
  66. rm -f $(TARGETS) *.o *~ core ./elf.h *.target