OSDN Git Service

Cleanup the mess, remove now obsolete files
[uclinux-h8/uClibc.git] / libc / string / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000 by Lineo, inc.
4 # Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.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 #
20 # Derived in part from the Linux-8086 C library, the GNU C Library, and several
21 # other sundry sources.  Files within this library are copyright by their
22 # respective copyright holders.
23
24 TOPDIR=../../
25 include $(TOPDIR)Rules.mak
26
27 MSRCW= wstring.c
28 MOBJW=  basename.o bcopy.o bzero.o dirname.o ffs.o memccpy.o memchr.o memcmp.o \
29         memcpy.o memmove.o mempcpy.o memrchr.o  memset.o rawmemchr.o stpcpy.o \
30         stpncpy.o strcasecmp.o strcasestr.o strcat.o strchrnul.o strchr.o \
31         strcmp.o strcpy.o strcspn.o strdup.o strlen.o strncasecmp.o strncat.o \
32         strncmp.o strncpy.o strndup.o strnlen.o strpbrk.o strrchr.o strsep.o \
33         strspn.o strstr.o strtok.o strtok_r.o \
34          __xpg_basename.o # strcoll.o strerror.o
35
36 MOBJW2= wcscasecmp.o wcscat.o wcschrnul.o wcschr.o wcscmp.o wcscpy.o wcscspn.o \
37         wcsdup.o wcslen.o wcsncasecmp.o wcsncat.o wcsncmp.o wcsncpy.o \
38         wcsnlen.o wcspbrk.o wcsrchr.o wcsspn.o wcsstr.o wcstok.o wmemchr.o \
39         wmemcmp.o wmemcpy.o wmemmove.o wmempcpy.o wmemset.o
40
41 MSRC1=strsignal.c
42 MOBJ1=strsignal.o psignal.o
43
44 # CSRC=strpbrk.c strsep.c strtok.c strtok_r.c strcspn.c \
45 #       strspn.c strcasecmp.c strncasecmp.c strerror.c bcopy.c bzero.c \
46 #       bcmp.c sys_errlist.c dirname.c basename.c
47 CSRC=strerror.c sys_errlist.c strxfrm.c
48 COBJS=$(patsubst %.c,%.o, $(CSRC))
49 OBJS=$(MOBJ) $(MOBJ1) $(MOBJ2) $(COBJS) $(MOBJW)
50
51 ifeq ($(HAS_WCHAR),true)
52         OBJS += $(MOBJW2)
53 endif
54
55 all: $(OBJS) $(LIBC)
56
57 $(LIBC): ar-target
58
59 ar-target: $(OBJS)
60         $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
61
62 $(MOBJW): $(MSRCW)
63         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
64         $(STRIPTOOL) -x -R .note -R .comment $*.o
65
66 $(MOBJW2): $(MSRCW)
67         $(CC) $(CFLAGS) -DWANT_WIDE -DL_$* $< -c -o $*.o
68         $(STRIPTOOL) -x -R .note -R .comment $*.o
69
70 $(MOBJ): $(MSRC)
71         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
72         $(STRIPTOOL) -x -R .note -R .comment $*.o
73
74 $(MOBJ2): $(MSRC2)
75         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
76         $(STRIPTOOL) -x -R .note -R .comment $*.o
77
78 $(MOBJ1): $(MSRC1)
79         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
80         $(STRIPTOOL) -x -R .note -R .comment $*.o
81
82 $(COBJS): %.o : %.c
83         $(CC) $(CFLAGS) -c $< -o $@
84         $(STRIPTOOL) -x -R .note -R .comment $*.o
85
86 clean:
87         rm -f *.[oa] *~ core
88