Makefile 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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
  26. LIBTHREAD_DB_SHARED_FULLNAME=libthread_db-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
  27. DIRS=
  28. ifeq ($(strip $(INCLUDE_THREADS)),true)
  29. DIRS+=linuxthreads
  30. ifeq ($(strip $(DODEBUG)),true)
  31. DIRS+=linuxthreads_db
  32. endif
  33. endif
  34. ALL_SUBDIRS = linuxthreads linuxthreads_db
  35. all: $(LIBPTHREAD) $(LIBTHREAD_DB)
  36. $(LIBPTHREAD): subdirs
  37. @if [ -f $(LIBPTHREAD) ] ; then \
  38. set -e; \
  39. install -d $(TOPDIR)lib; \
  40. rm -f $(TOPDIR)lib/$(LIBPTHREAD); \
  41. install -m 644 $(LIBPTHREAD) $(TOPDIR)lib; \
  42. fi;
  43. $(LIBTHREAD_DB): subdirs
  44. @if [ -f $(LIBTHREAD_DB) ] ; then \
  45. set -e; \
  46. install -d $(TOPDIR)lib; \
  47. rm -f $(TOPDIR)lib/$(LIBTHREAD_DB); \
  48. install -m 644 $(LIBTHREAD_DB) $(TOPDIR)lib; \
  49. fi;
  50. $(OBJS): %.o : %.c
  51. $(CC) $(CFLAGS) -c $< -o $@
  52. $(STRIPTOOL) -x -R .note -R .comment $*.o
  53. $(OBJ): Makefile
  54. shared: all
  55. if [ -f $(LIBPTHREAD) ] ; then \
  56. set -e; \
  57. $(LD) $(LDFLAGS) -soname=$(LIBPTHREAD_SHARED).$(MAJOR_VERSION) \
  58. -o $(LIBPTHREAD_SHARED_FULLNAME) --whole-archive $(LIBPTHREAD) \
  59. --no-whole-archive $(TOPDIR)/libc/misc/internals/interp.o \
  60. -L$(TOPDIR)/lib -lc; \
  61. install -d $(TOPDIR)lib; \
  62. rm -f $(TOPDIR)lib/$(LIBPTHREAD_SHARED_FULLNAME) \
  63. $(TOPDIR)lib/$(LIBPTHREAD_SHARED).$(MAJOR_VERSION); \
  64. install -m 644 $(LIBPTHREAD_SHARED_FULLNAME) $(TOPDIR)lib; \
  65. (cd $(TOPDIR)lib && ln -sf $(LIBPTHREAD_SHARED_FULLNAME) \
  66. $(LIBPTHREAD_SHARED)); \
  67. (cd $(TOPDIR)lib && ln -sf $(LIBPTHREAD_SHARED_FULLNAME) \
  68. $(LIBPTHREAD_SHARED).$(MAJOR_VERSION)); \
  69. fi;
  70. if [ -f $(LIBTHREAD_DB) ] ; then \
  71. set -e; \
  72. $(LD) $(LDFLAGS) -soname=$(LIBTHREAD_DB_SHARED).$(MAJOR_VERSION) \
  73. -o $(LIBTHREAD_DB_SHARED_FULLNAME) --whole-archive $(LIBTHREAD_DB) \
  74. --no-whole-archive $(TOPDIR)/libc/misc/internals/interp.o \
  75. -L$(TOPDIR)/lib -lc; \
  76. install -d $(TOPDIR)lib; \
  77. rm -f $(TOPDIR)lib/$(LIBTHREAD_DB_SHARED_FULLNAME) \
  78. $(TOPDIR)lib/$(LIBTHREAD_DB_SHARED).$(MAJOR_VERSION); \
  79. install -m 644 $(LIBTHREAD_DB_SHARED_FULLNAME) $(TOPDIR)lib; \
  80. (cd $(TOPDIR)lib && ln -sf $(LIBTHREAD_DB_SHARED_FULLNAME) \
  81. $(LIBTHREAD_DB_SHARED)); \
  82. (cd $(TOPDIR)lib && ln -sf $(LIBTHREAD_DB_SHARED_FULLNAME) \
  83. $(LIBTHREAD_DB_SHARED).$(MAJOR_VERSION)); \
  84. fi;
  85. tags:
  86. ctags -R
  87. subdirs: $(patsubst %, _dir_%, $(DIRS))
  88. subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))
  89. $(patsubst %, _dir_%, $(DIRS)) : dummy
  90. $(MAKE) -C $(patsubst _dir_%, %, $@)
  91. $(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy
  92. $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
  93. clean: subdirs_clean
  94. rm -f *.[oa] *~ core $(LIBPTHREAD) $(LIBPTHREAD_SHARED_FULLNAME) \
  95. $(LIBTHREAD_DB) $(LIBTHREAD_DB_SHARED_FULLNAME)
  96. .PHONY: dummy