OSDN Git Service

Ok, this commit is _huge_ and its gonna change the world. I've
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / powerpc / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000 by Lineo, inc.
4 # Copyright (C) 2000,2001,2002 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 USE_CRT0_C=true
25
26 TOPDIR=../../../../
27 include $(TOPDIR)Rules.mak
28 ASFLAGS=$(CFLAGS)
29
30 TARGET_MACHINE_TYPE=$(shell $(CC) -dumpmachine)
31
32 ifeq ($(USE_CRT0_C),true)
33 CRT0=crt0.c
34 CRT0_OBJ=$(patsubst %.c,%.o, $(CRT0))
35 else
36 CRT0=crt0.S
37 CRT0_OBJ=$(patsubst %.S,%.o, $(CRT0))
38 endif
39
40 SSRC=__longjmp.S setjmp.S bsd-setjmp.S bsd-_setjmp.S brk.S clone.S
41 SOBJS=$(patsubst %.S,%.o, $(SSRC))
42
43 CSRC=_mmap.c vfork.c __syscall_error.c
44 COBJS=$(patsubst %.c,%.o, $(CSRC))
45
46 OBJS=$(SOBJS) $(MOBJ) $(COBJS)
47
48
49 all: $(OBJS) $(LIBC)
50
51 $(LIBC): ar-target 
52
53 ar-target: $(OBJS) $(CRT0_OBJ)
54         $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
55         cp $(CRT0_OBJ) $(TOPDIR)lib/
56
57
58 ifeq ($(USE_CRT0_C),true)
59 $(CRT0_OBJ): %.o : %.c
60 else
61 $(CRT0_OBJ): %.o : %.S
62 endif
63         $(CC) $(CFLAGS) -c $< -o $@
64         $(STRIPTOOL) -x -R .note -R .comment $*.o
65
66 $(SOBJS): %.o : %.S
67         $(CC) $(CFLAGS) -c $< -o $@
68         $(STRIPTOOL) -x -R .note -R .comment $*.o
69
70 $(COBJS): %.o : %.c
71         $(CC) $(CFLAGS) -c $< -o $@
72         $(STRIPTOOL) -x -R .note -R .comment $*.o
73
74 headers:
75
76 clean:
77         rm -f *.[oa] *~ core
78         rm -f bits/sysnum.h
79