Makefile 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. #CFLAGS+=$(SSP_ALL_CFLAGS)
  21. LIB_NAME=libthread_db
  22. AR_LIB_NAME=$(TOPDIR)lib/$(LIB_NAME).a
  23. SO_LIB_NAME=$(TOPDIR)lib/$(LIB_NAME).so
  24. SO_FULL_NAME=$(LIB_NAME)-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
  25. # set up system dependencies include dirs (NOTE: order matters!)
  26. PTDIR = $(TOPDIR)libpthread/linuxthreads/
  27. SYSDEPINC = -I$(PTDIR)sysdeps/pthread \
  28. -I$(PTDIR)sysdeps/$(TARGET_ARCH) \
  29. -I$(TOPDIR)libc/sysdeps/linux/$(TARGET_ARCH)
  30. CFLAGS += $(SYSDEPINC) -DLIBPTHREAD_SO="\"libpthread.so.$(MAJOR_VERSION)\""
  31. # Remove any -z defs since this lib will have undefined symbols
  32. LDFLAGS := $(subst -z defs,,$(LDFLAGS)) --warn-unresolved-symbols
  33. CSRC=$(wildcard *.c)
  34. OBJS=$(patsubst %.c,%.o, $(CSRC))
  35. ifeq ($(strip $(HAVE_SHARED)),y)
  36. all: $(SO_LIB_NAME)
  37. else
  38. all: $(AR_LIB_NAME)
  39. endif
  40. $(AR_LIB_NAME): $(OBJS)
  41. $(INSTALL) -d $(TOPDIR)lib
  42. $(RM) $(AR_LIB_NAME)
  43. $(AR) $(ARFLAGS) $(AR_LIB_NAME) $(OBJS)
  44. $(SO_LIB_NAME): $(AR_LIB_NAME)
  45. $(RM) $(TOPDIR)lib/$(SO_FULL_NAME) $(SO_LIB_NAME).1 $(SO_LIB_NAME)
  46. $(LD) $(LDFLAGS) -soname=$(LIB_NAME).so.1 \
  47. -o $(TOPDIR)lib/$(SO_FULL_NAME) --whole-archive $(AR_LIB_NAME) \
  48. --no-whole-archive $(TOPDIR)libc/misc/internals/interp.o \
  49. -L$(TOPDIR)lib -lc $(LDADD_LIBFLOAT) $(LIBGCC)
  50. $(LN) -sf $(SO_FULL_NAME) $(SO_LIB_NAME).1
  51. $(LN) -sf $(SO_FULL_NAME) $(SO_LIB_NAME)
  52. $(OBJS): %.o : %.c
  53. $(CC) $(CFLAGS) -c $< -o $@
  54. $(STRIPTOOL) -x -R .note -R .comment $*.o
  55. clean:
  56. $(RM) *.o *~ core