Makefile 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. XXFLAGS=$(XWARNINGS) $(OPTIMIZATION) $(XARCH_CFLAGS) $(CPU_CFLAGS) $(PICFLAG) \
  22. -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
  23. -fno-builtin -nostdinc -I$(TOPDIR)ldso/include -I. -I$(TOPDIR)include
  24. ifeq ($(SUPPORT_LD_DEBUG),y)
  25. XXFLAGS=$(XWARNINGS) $(XARCH_CFLAGS) $(CPU_CFLAGS) $(PICFLAG) \
  26. -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
  27. -fno-builtin -nostdinc -I$(TOPDIR)ldso/include -I. -I$(TOPDIR)include
  28. ifeq ($(TARGET_ARCH),powerpc)
  29. XXFLAGS+=-Os -g3
  30. else
  31. XXFLAGS+=-O0 -g3
  32. endif
  33. endif
  34. XXFLAGS+=$(shell $(CC) -print-search-dirs | sed -ne "s/install: *\(.*\)/-I\1include/gp")
  35. LDFLAGS=$(CPU_LDFLAGS-y) -shared --warn-common --export-dynamic --sort-common \
  36. -z combreloc --discard-locals --discard-all --no-undefined
  37. CSRC= ldso.c dl-startup.c
  38. COBJS=$(patsubst %.c,%.o, $(CSRC))
  39. ASRC=$(shell ls $(TARGET_ARCH)/*.S)
  40. AOBJS=$(patsubst %.S,%.o, $(ASRC))
  41. OBJS=$(AOBJS) $(COBJS)
  42. ifneq ($(strip $(SUPPORT_LD_DEBUG)),y)
  43. LDFLAGS+=-s
  44. endif
  45. ifeq ($(strip $(SUPPORT_LD_DEBUG)),y)
  46. XXFLAGS+=-D__SUPPORT_LD_DEBUG__
  47. endif
  48. ifeq ($(strip $(SUPPORT_LD_DEBUG_EARLY)),y)
  49. XXFLAGS+=-D__SUPPORT_LD_DEBUG_EARLY__
  50. endif
  51. ifeq ($(strip $(FORCE_SHAREABLE_TEXT_SEGMENTS)),y)
  52. XXFLAGS+=-DFORCE_SHAREABLE_TEXT_SEGMENTS
  53. endif
  54. #This stuff will not work with -fomit-frame-pointer
  55. XXFLAGS := $(XXFLAGS:-fomit-frame-pointer=)
  56. all: lib
  57. lib:: dl-progname.h $(OBJS) $(DLINK_OBJS)
  58. $(LD) $(LDFLAGS) -e _dl_boot -soname=$(UCLIBC_LDSO) \
  59. -o $(LDSO_FULLNAME) $(OBJS) $(LIBGCC);
  60. $(INSTALL) -d $(TOPDIR)lib
  61. $(INSTALL) -m 755 $(LDSO_FULLNAME) $(TOPDIR)lib
  62. $(LN) -sf $(LDSO_FULLNAME) $(TOPDIR)lib/$(UCLIBC_LDSO)
  63. dl-progname.h: Makefile
  64. echo "const char *_dl_progname=\""$(UCLIBC_LDSO)"\";" > dl-progname.h
  65. echo "#include \"$(TARGET_ARCH)/elfinterp.c\"" >> dl-progname.h
  66. $(COBJS): %.o : %.c
  67. $(CC) $(XXFLAGS) -I../libdl -c $< -o $@
  68. $(STRIPTOOL) -x -R .note -R .comment $*.o
  69. $(AOBJS): %.o : %.S
  70. $(CC) $(XXFLAGS) -I../libdl -c $< -o $@
  71. $(STRIPTOOL) -x -R .note -R .comment $*.o
  72. ldso.o: $(CSRC)
  73. clean:
  74. $(RM) $(UCLIBC_LDSO)* $(OBJS) $(LDSO_FULLNAME)* core *.o *.a *.s *.i dl-progname.h ldso.h *~