OSDN Git Service

tweak dependencies so the archive is only rebuilt when the object files are updated
[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 # 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 DIRS = sysdeps
25
26 #Adjust the soname version to avoid namespace collisions with glibc's libpthread
27 LIBPTHREAD:=../libpthread.a
28 ifeq ($(strip $(TARGET_ARCH)),sparc)
29 SYSDEPS_DIR:=$(TARGET_ARCH)/sparc32
30 else
31 SYSDEPS_DIR:=$(TARGET_ARCH)
32 endif
33 #This stuff will not compile without at least -O1
34 CFLAGS :=$(CFLAGS:-O0=-O1)
35
36
37 # set up system dependencies include dirs (NOTE: order matters!)
38 PTDIR = $(TOPDIR)libpthread/linuxthreads/
39 SYSDEPINC = -I$(PTDIR)sysdeps/unix/sysv/linux \
40             -I$(PTDIR)sysdeps/pthread \
41             -I$(PTDIR)sysdeps/unix/sysv \
42             -I$(PTDIR)sysdeps/unix/unix \
43             -I$(PTDIR)sysdeps/$(TARGET_ARCH) \
44             -I$(PTDIR)sysdeps \
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 # TODO: fix race condition between subdirs and $(OBJS).
61 #       only applies to pt-machine.o and sh64.
62
63 all: $(LIBPTHREAD)
64
65 $(LIBPTHREAD) ar-target: $(OBJS) subdirs
66         $(AR) $(ARFLAGS) $(LIBPTHREAD) $(OBJS)
67
68 $(COBJS): %.o : %.c
69         $(CC) $(CFLAGS) -c $< -o $@
70 ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y)
71         $(STRIPTOOL) -X --strip-debug -R .note -R .comment $*.o
72 else
73         $(STRIPTOOL) -x -R .note -R .comment $*.o
74 endif
75
76 clean: subdirs_clean
77         $(RM) *.[oa] *~ core
78
79 subdirs: $(patsubst %, _dir_%, $(DIRS))
80 subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS))
81
82 $(patsubst %, _dir_%, $(DIRS)) : dummy
83         $(MAKE) -C $(patsubst _dir_%, %, $@)
84
85 $(patsubst %, _dirclean_%, $(DIRS)) : dummy
86         $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
87
88 .PHONY: dummy