OSDN Git Service

Add patch at bugs 274. From Peter Manzinger.
[uclinux-h8/uclibc-ng.git] / libpthread / linuxthreads / Makefile
1 # Makefile for uClibc's pthread library
2 #
3 # Copyright (C) 2002 Erik Andersen <andersen@uclibc.org>
4 # Copyright (C) 2003 Paul Mundt <lethal@linux-sh.org>
5 #
6 # This program is free software; you can redistribute it and/or modify it under
7 # the terms of the GNU Library General Public License as published by the Free
8 # Software Foundation; either version 2 of the License, or (at your option) any
9 # later version.
10 #
11 # This program is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
14 # details.
15 #
16 # You should have received a copy of the GNU Library General Public License
17 # along with this program; if not, write to the Free Software Foundation, Inc.,
18 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 # Makefile for uClibc
20
21 TOPDIR=../../
22 include $(TOPDIR)Rules.mak
23
24 # As long as there is only one subdir, we don't 
25 # have to worry about race conditions with multiple 
26 # $(AR)'s in subdirs running on linuxthreads.a.
27 DIRS = sysdeps
28
29 #Adjust the soname version to avoid namespace collisions with glibc's libpthread
30 LIBPTHREAD:=../libpthread.a
31 ifeq ($(strip $(TARGET_ARCH)),sparc)
32 SYSDEPS_DIR:=$(TARGET_ARCH)/sparc32
33 else
34 SYSDEPS_DIR:=$(TARGET_ARCH)
35 endif
36 CFLAGS += $(SSP_ALL_CFLAGS)
37 #This stuff will not compile without at least -O1
38 CFLAGS :=$(CFLAGS:-O0=-O1)
39
40
41 # set up system dependencies include dirs (NOTE: order matters!)
42 PTDIR = $(TOPDIR)libpthread/linuxthreads/
43 SYSDEPINC = -I$(PTDIR)sysdeps/pthread \
44             -I$(PTDIR)sysdeps/$(TARGET_ARCH) \
45             -I$(TOPDIR)libc/sysdeps/linux/$(TARGET_ARCH)
46 CFLAGS += $(SYSDEPINC)
47
48 CSRC=attr.c cancel.c condvar.c errno.c events.c join.c lockfile.c manager.c \
49         mutex.c oldsemaphore.c pt-machine.c ptfork.c pthread.c \
50         ptlongjmp.c rwlock.c semaphore.c signals.c specific.c spinlock.c \
51         wrapsyscall.c
52
53 ifeq ($(UCLIBC_HAS_XLOCALE),y)
54         CSRC += locale.c
55 endif
56
57 COBJS=$(patsubst %.c,%.o, $(CSRC))
58 OBJS=$(COBJS)
59
60 # We need to make sure that we put all the top-level $(OBJS) into
61 # our archive before executing subdirs.  That way, when $(AR) is 
62 # run in the subdirs, it'll bump the generic top-level objects 
63 # out of our archive in favor of the machine-specific ones.
64 all: $(LIBPTHREAD) subdirs
65
66 $(LIBPTHREAD) ar-target: $(OBJS)
67         $(AR) $(ARFLAGS) $(LIBPTHREAD) $(OBJS)
68
69 $(COBJS): %.o : %.c
70         $(CC) $(CFLAGS) -c $< -o $@
71 ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y)
72         $(STRIPTOOL) -X --strip-debug -R .note -R .comment $*.o
73 else
74         $(STRIPTOOL) -x -R .note -R .comment $*.o
75 endif
76
77 clean: subdirs_clean
78         $(RM) *.[oa] *~ core
79
80 subdirs: $(patsubst %, _dir_%, $(DIRS))
81 subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS))
82
83 $(patsubst %, _dir_%, $(DIRS)): $(LIBPTHREAD)
84         $(MAKE) -C $(patsubst _dir_%, %, $@)
85
86 $(patsubst %, _dirclean_%, $(DIRS)):
87         $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
88
89 .PHONY: dummy