Makefile 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. # Makefile for uClibc
  19. TOPDIR=../../
  20. include $(TOPDIR)Rules.mak
  21. #Adjust the soname version to avoid namespace collisions with glibc's libpthread
  22. PT_VERSION=$(MAJOR_VERSION).$(MINOR_VERSION)
  23. LIBPTHREAD=../libpthread.a
  24. # set up system dependencies include dirs (NOTE: order matters!)
  25. PTDIR = $(TOPDIR)libpthread/linuxthreads/
  26. SYSDEPINC = -I$(PTDIR)sysdeps/unix/sysv/linux \
  27. -I$(PTDIR)sysdeps/pthread \
  28. -I$(PTDIR)sysdeps/unix/sysv \
  29. -I$(PTDIR)sysdeps/unix/unix \
  30. -I$(PTDIR)sysdeps/$(TARGET_ARCH) \
  31. -I$(PTDIR)sysdeps \
  32. -I$(TOPDIR)libc/sysdeps/linux/$(TARGET_ARCH)
  33. CFLAGS += $(SYSDEPINC) -DLIBPTHREAD_SO="\"libpthread.so.$(PT_VERSION)\"" -D_GNU_SOURCE
  34. CSRC=attr.c cancel.c condvar.c errno.c events.c join.c lockfile.c manager.c \
  35. mutex.c oldsemaphore.c pt-machine.c ptfork.c pthread.c \
  36. ptlongjmp.c rwlock.c semaphore.c signals.c specific.c spinlock.c \
  37. wrapsyscall.c #weaks.c no-tsd.c
  38. COBJS=$(patsubst %.c,%.o, $(CSRC))
  39. OBJS=$(COBJS)
  40. all: $(OBJS) $(LIBPTHREAD)
  41. $(LIBPTHREAD): ar-target
  42. ar-target: $(OBJS)
  43. $(AR) $(ARFLAGS) $(LIBPTHREAD) $(OBJS)
  44. $(COBJS): %.o : %.c
  45. $(CC) $(CFLAGS) -c $< -o $@
  46. $(STRIPTOOL) -x -R .note -R .comment $*.o
  47. clean:
  48. rm -f *.[oa] *~ core