Makefile 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. # Makefile for uClibc's pthread library
  2. #
  3. # Copyright (C) 2002 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. #Adjust the soname version to avoid namespace collisions with glibc's libpthread
  21. LIBPTHREAD=libpthread.a
  22. LIBPTHREAD_SHARED=libpthread.so
  23. LIBPTHREAD_SHARED_FULLNAME=libpthread-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
  24. LIBTHREAD_DB=libthread_db.a
  25. LIBTHREAD_DB_SHARED=libthread_db.so.1
  26. LIBTHREAD_DB_SHARED_FULLNAME=libthread_db-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
  27. DIRS=
  28. ifeq ($(strip $(UCLIBC_HAS_THREADS)),y)
  29. DIRS+=linuxthreads
  30. ifeq ($(strip $(DODEBUG)),y)
  31. DIRS+=linuxthreads_db
  32. endif
  33. endif
  34. ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y)
  35. ifeq ($(strip $(DOPIC)),y)
  36. START_FILES = $(TOPDIR)lib/crti.o $(LIBGCC_DIR)crtbeginS.o
  37. END_FILES = $(LIBGCC_DIR)crtendS.o $(TOPDIR)lib/crtn.o
  38. else
  39. START_FILES = $(TOPDIR)lib/crti.o $(LIBGCC_DIR)crtbegin.o
  40. END_FILES = $(LIBGCC_DIR)crtend.o $(TOPDIR)lib/crtn.o
  41. endif
  42. endif
  43. ALL_SUBDIRS = linuxthreads linuxthreads_db
  44. all: $(LIBPTHREAD) $(LIBTHREAD_DB)
  45. $(LIBPTHREAD): subdirs
  46. @if [ -f $(LIBPTHREAD) ] ; then \
  47. set -e; \
  48. install -d $(TOPDIR)lib; \
  49. rm -f $(TOPDIR)lib/$(LIBPTHREAD); \
  50. install -m 644 $(LIBPTHREAD) $(TOPDIR)lib; \
  51. fi;
  52. $(LIBTHREAD_DB): subdirs
  53. @if [ -f $(LIBTHREAD_DB) ] ; then \
  54. set -e; \
  55. install -d $(TOPDIR)lib; \
  56. rm -f $(TOPDIR)lib/$(LIBTHREAD_DB); \
  57. install -m 644 $(LIBTHREAD_DB) $(TOPDIR)lib; \
  58. fi;
  59. $(OBJS): %.o : %.c
  60. $(CC) $(CFLAGS) -c $< -o $@
  61. $(STRIPTOOL) -x -R .note -R .comment $*.o
  62. $(OBJ): Makefile
  63. shared: all
  64. if [ -f $(LIBPTHREAD) ] ; then \
  65. set -e; \
  66. $(LD) $(LDFLAGS) -soname=$(LIBPTHREAD_SHARED).$(MAJOR_VERSION) \
  67. -o $(LIBPTHREAD_SHARED_FULLNAME) $(START_FILES) --whole-archive $(LIBPTHREAD) \
  68. --no-whole-archive $(TOPDIR)/libc/misc/internals/interp.o \
  69. -L$(TOPDIR)/lib -lc $(END_FILES); \
  70. install -d $(TOPDIR)lib; \
  71. rm -f $(TOPDIR)lib/$(LIBPTHREAD_SHARED_FULLNAME) \
  72. $(TOPDIR)lib/$(LIBPTHREAD_SHARED).$(MAJOR_VERSION); \
  73. install -m 644 $(LIBPTHREAD_SHARED_FULLNAME) $(TOPDIR)lib; \
  74. (cd $(TOPDIR)lib && ln -sf $(LIBPTHREAD_SHARED_FULLNAME) \
  75. $(LIBPTHREAD_SHARED)); \
  76. (cd $(TOPDIR)lib && ln -sf $(LIBPTHREAD_SHARED_FULLNAME) \
  77. $(LIBPTHREAD_SHARED).$(MAJOR_VERSION)); \
  78. fi;
  79. if [ -f $(LIBTHREAD_DB) ] ; then \
  80. set -e; \
  81. $(LD) $(LDFLAGS) -soname=$(LIBTHREAD_DB_SHARED).$(MAJOR_VERSION) \
  82. -o $(LIBTHREAD_DB_SHARED_FULLNAME) $(START_FILES) --whole-archive $(LIBTHREAD_DB) \
  83. --no-whole-archive $(TOPDIR)/libc/misc/internals/interp.o \
  84. -L$(TOPDIR)/lib -lc $(END_FILES); \
  85. install -d $(TOPDIR)lib; \
  86. rm -f $(TOPDIR)lib/$(LIBTHREAD_DB_SHARED_FULLNAME) \
  87. $(TOPDIR)lib/$(LIBTHREAD_DB_SHARED).$(MAJOR_VERSION); \
  88. install -m 644 $(LIBTHREAD_DB_SHARED_FULLNAME) $(TOPDIR)lib; \
  89. (cd $(TOPDIR)lib && ln -sf $(LIBTHREAD_DB_SHARED_FULLNAME) \
  90. $(LIBTHREAD_DB_SHARED)); \
  91. fi;
  92. tags:
  93. ctags -R
  94. subdirs: $(patsubst %, _dir_%, $(DIRS))
  95. subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))
  96. $(patsubst %, _dir_%, $(DIRS)) : dummy
  97. $(MAKE) -C $(patsubst _dir_%, %, $@)
  98. $(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy
  99. $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
  100. clean: subdirs_clean
  101. rm -f *.[oa] *~ core $(LIBPTHREAD) $(LIBPTHREAD_SHARED_FULLNAME) \
  102. $(LIBTHREAD_DB) $(LIBTHREAD_DB_SHARED_FULLNAME)
  103. .PHONY: dummy