OSDN Git Service

Oops. Don't call strip twice
[uclinux-h8/uClibc.git] / libpthread / linuxthreads / Makefile
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
20 TOPDIR=../../
21 include $(TOPDIR)Rules.mak
22
23 #Adjust the soname version to avoid namespace collisions with glibc's libpthread
24 LIBPTHREAD:=../libpthread.a
25 ifeq ($(strip $(TARGET_ARCH)),sparc)
26 SYSDEPS_DIR:=$(TARGET_ARCH)/sparc32
27 else
28 SYSDEPS_DIR:=$(TARGET_ARCH)
29 endif
30
31 # set up system dependencies include dirs (NOTE: order matters!)
32 PTDIR = $(TOPDIR)libpthread/linuxthreads/
33 SYSDEPINC = -I$(PTDIR)sysdeps/unix/sysv/linux \
34             -I$(PTDIR)sysdeps/pthread \
35             -I$(PTDIR)sysdeps/unix/sysv \
36             -I$(PTDIR)sysdeps/unix/unix \
37             -I$(PTDIR)sysdeps/$(TARGET_ARCH) \
38             -I$(PTDIR)sysdeps \
39             -I$(TOPDIR)libc/sysdeps/linux/$(TARGET_ARCH)
40 CFLAGS += $(SYSDEPINC)
41
42 CSRC=attr.c cancel.c condvar.c errno.c events.c join.c lockfile.c manager.c \
43         mutex.c oldsemaphore.c pt-machine.c ptfork.c pthread.c \
44         ptlongjmp.c rwlock.c semaphore.c signals.c specific.c spinlock.c \
45         wrapsyscall.c #weaks.c
46 COBJS=$(patsubst %.c,%.o, $(CSRC))
47 OBJS=$(COBJS)
48
49 all: $(OBJS) $(LIBPTHREAD)
50
51 $(LIBPTHREAD): ar-target
52
53 ar-target: $(OBJS)
54         $(AR) $(ARFLAGS) $(LIBPTHREAD) $(OBJS)
55
56 $(COBJS): %.o : %.c
57         $(CC) $(CFLAGS) -c $< -o $@
58 ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y)
59         $(STRIPTOOL) -X --strip-debug -R .note -R .comment $*.o
60 else
61         $(STRIPTOOL) -x -R .note -R .comment $*.o
62 endif
63
64 clean:
65         rm -f *.[oa] *~ core
66
67