Makefile 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000 by Lineo, inc.
  4. # Copyright (C) 2000-2002 Erik Andersen <andersen@uclibc.org>
  5. #
  6. # This program is free software; you can redistribute it and/or modify it under
  7. # the terms of the GNU Library General Public License as published by the Free
  8. # Software Foundation; either version 2 of the License, or (at your option) any
  9. # later version.
  10. #
  11. # This program is distributed in the hope that it will be useful, but WITHOUT
  12. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  13. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  14. # details.
  15. #
  16. # You should have received a copy of the GNU Library General Public License
  17. # along with this program; if not, write to the Free Software Foundation, Inc.,
  18. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. #
  20. # Derived in part from the Linux-8086 C library, the GNU C Library, and several
  21. # other sundry sources. Files within this library are copyright by their
  22. # respective copyright holders.
  23. TOPDIR=../../
  24. include $(TOPDIR)Rules.mak
  25. LDSO_FULLNAME=ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
  26. XXFLAGS+=-DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
  27. -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
  28. -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\"
  29. LDFLAGS=$(CPU_LDFLAGS-y) -shared --warn-common --export-dynamic --sort-common \
  30. -z combreloc --discard-locals --discard-all
  31. CSRC= ldso.c #hash.c readelflib1.c $(TARGET_ARCH)/elfinterp.c
  32. COBJS=$(patsubst %.c,%.o, $(CSRC))
  33. ASRC=$(shell ls $(TARGET_ARCH)/*.S)
  34. AOBJS=$(patsubst %.S,%.o, $(ASRC))
  35. OBJS=$(AOBJS) $(COBJS)
  36. ifeq ($(strip $(TARGET_ARCH)),cris)
  37. LDFLAGS+=-mcrislinux
  38. endif
  39. ifneq ($(strip $(DODEBUG)),y)
  40. LDFLAGS+=-s
  41. endif
  42. ifeq ($(strip $(SUPPORT_LD_DEBUG)),y)
  43. XXFLAGS+=-D__SUPPORT_LD_DEBUG__
  44. endif
  45. ifeq ($(strip $(SUPPORT_LD_DEBUG_EARLY)),y)
  46. XXFLAGS+=-D__SUPPORT_LD_DEBUG_EARLY__
  47. endif
  48. all: lib
  49. lib:: ldso.h $(OBJS) $(DLINK_OBJS)
  50. $(LD) $(LDFLAGS) -e _dl_boot -soname=$(UCLIBC_LDSO) \
  51. -o $(LDSO_FULLNAME) $(OBJS) $(LIBGCC);
  52. install -d $(TOPDIR)lib
  53. install -m 755 $(LDSO_FULLNAME) $(TOPDIR)lib
  54. (cd $(TOPDIR)lib && ln -sf $(LDSO_FULLNAME) $(UCLIBC_LDSO))
  55. ldso.h: Makefile
  56. echo "const char *_dl_progname=\""$(UCLIBC_LDSO)"\";" > ldso.h
  57. echo "#include \"$(TARGET_ARCH)/elfinterp.c\"" >> ldso.h
  58. $(COBJS): %.o : %.c
  59. $(CC) $(CFLAGS) $(XXFLAGS) -I. -I./$(TARGET_ARCH) -I../libdl -c $< -o $@
  60. $(STRIPTOOL) -x -R .note -R .comment $*.o
  61. $(AOBJS): %.o : %.S
  62. $(CC) $(CFLAGS) -I. -I./$(TARGET_ARCH) -I../libdl -c $< -o $@
  63. $(STRIPTOOL) -x -R .note -R .comment $*.o
  64. ldso.o: ldso.c hash.c readelflib1.c $(TARGET_ARCH)/elfinterp.c \
  65. ld_hash.h ld_string.h ld_syscall.h ldso.h linuxelf.h
  66. clean::
  67. $(RM) -f $(UCLIBC_LDSO)* $(OBJS) $(LDSO_FULLNAME)* core *.o *.a *.s *.i ldso.h *~