Makefile 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2004 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. TOPDIR=../../
  19. include $(TOPDIR)Rules.mak
  20. LDSO_FULLNAME=ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
  21. # reset to initial (disabling predefined CFLAGS)
  22. ASFLAGS=
  23. ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y)
  24. ASFLAGS+=$(check_as_noexecstack)
  25. endif
  26. XXFLAGS=$(XWARNINGS) $(SSP_DISABLE_FLAGS)
  27. ifeq ($(DODEBUG),y)
  28. # Not really much point in including debugging info, since gdb
  29. # can't really debug ldso, since gdb requires help from ldso to
  30. # debug things....
  31. XXFLAGS+=-Os #-g3
  32. else
  33. XXFLAGS+=$(OPTIMIZATION)
  34. endif
  35. XXFLAGS+= $(XARCH_CFLAGS) $(CPU_CFLAGS) $(PICFLAG) \
  36. -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
  37. -fno-builtin -nostdinc -D_LIBC -I$(TOPDIR)ldso/include -I. -I$(TOPDIR)include
  38. # BEWARE!!! At least mips* will die if -O0 is used!!!
  39. XXFLAGS:=$(XXFLAGS:-O0=-O1)
  40. XXFLAGS+=-isystem $(shell $(CC) -print-file-name=include)
  41. LDFLAGS=$(CPU_LDFLAGS-y) -z now -Bsymbolic -shared --warn-common --export-dynamic --sort-common \
  42. -z combreloc --discard-locals --discard-all --no-undefined
  43. ifeq ($(UCLIBC_BUILD_RELRO),y)
  44. LDFLAGS+=-z relro
  45. endif
  46. CSRC= ldso.c
  47. COBJS=$(patsubst %.c,%.o, $(CSRC))
  48. ASRC=$(shell ls $(TARGET_ARCH)/*.S)
  49. AOBJS=$(patsubst %.S,%.o, $(ASRC))
  50. OBJS=$(AOBJS) $(COBJS)
  51. ifneq ($(strip $(SUPPORT_LD_DEBUG)),y)
  52. LDFLAGS+=-s
  53. endif
  54. ifeq ($(strip $(SUPPORT_LD_DEBUG)),y)
  55. XXFLAGS+=-D__SUPPORT_LD_DEBUG__
  56. endif
  57. ifeq ($(strip $(SUPPORT_LD_DEBUG_EARLY)),y)
  58. XXFLAGS+=-D__SUPPORT_LD_DEBUG_EARLY__
  59. endif
  60. #This stuff will not work with -fomit-frame-pointer
  61. XXFLAGS := $(XXFLAGS:-fomit-frame-pointer=)
  62. all: $(LDSO_FULLNAME)
  63. $(LDSO_FULLNAME): $(OBJS) $(DLINK_OBJS)
  64. $(LD) $(LDFLAGS) -e _dl_boot -soname=$(UCLIBC_LDSO) \
  65. -o $(LDSO_FULLNAME) $(OBJS) $(LIBGCC)
  66. $(INSTALL) -d $(TOPDIR)lib
  67. $(INSTALL) -m 755 $(LDSO_FULLNAME) $(TOPDIR)lib
  68. $(LN) -sf $(LDSO_FULLNAME) $(TOPDIR)lib/$(UCLIBC_LDSO)
  69. $(COBJS): %.o : %.c
  70. $(CC) $(XXFLAGS) -I../libdl -c $< -o $@
  71. $(STRIPTOOL) -x -R .note -R .comment $*.o
  72. $(AOBJS): %.o : %.S
  73. $(CC) $(XXFLAGS) $(ASFLAGS) -I../libdl -c $< -o $@
  74. $(STRIPTOOL) -x -R .note -R .comment $*.o
  75. ldso.o: $(CSRC)
  76. clean:
  77. $(RM) $(UCLIBC_LDSO)* $(OBJS) $(LDSO_FULLNAME)* core *.o *.a *.s *.i ldso.h *~