OSDN Git Service

Patch from Peter S. Mazinger to consistantly use "ASFLAGS"
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / arm / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000-2003 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
19 TOPDIR=../../../../
20 include $(TOPDIR)Rules.mak
21
22 CRT0_SRC = crt0.S
23 CRT0_OBJ = crt0.o crt1.o
24 CRT0_DEPS=gmon-start.S
25 CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o
26
27 SSRC=__longjmp.S vfork.S clone.S setjmp.S bsd-setjmp.S \
28         bsd-_setjmp.S sigrestorer.S mmap64.S
29 SOBJS=$(patsubst %.S,%.o, $(SSRC))
30
31 CSRC=brk.c syscall.c ioperm.c sigaction.c
32 COBJS=$(patsubst %.c,%.o, $(CSRC))
33
34 OBJS=$(SOBJS) $(MOBJ) $(COBJS)
35
36 all: $(OBJS) $(LIBC)
37
38 $(LIBC): ar-target 
39
40 ar-target: $(OBJS) $(CRT0_OBJ) $(CTOR_TARGETS)
41         $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
42         cp $(CRT0_OBJ) $(TOPDIR)lib/
43
44 $(CRT0_OBJ): $(CRT0_SRC)
45         $(CC) $(ASFLAGS) -DL_$* $< -c -o $*.o
46         $(STRIPTOOL) -x -R .note -R .comment $*.o
47
48 $(SOBJS): %.o : %.S
49         $(CC) $(ASFLAGS) -c $< -o $@
50         $(STRIPTOOL) -x -R .note -R .comment $*.o
51
52 $(COBJS): %.o : %.c
53         $(CC) $(CFLAGS) -c $< -o $@
54         $(STRIPTOOL) -x -R .note -R .comment $*.o
55
56 ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y)
57 crti.o: crti.S
58         $(CC) $(ASFLAGS) -c crti.S -o crti.o
59
60 $(TOPDIR)lib/crti.o: crti.o
61         $(INSTALL) -d $(TOPDIR)lib/
62         cp crti.o $(TOPDIR)lib/
63
64 crtn.o: crtn.S
65         $(CC) $(ASFLAGS) -c crtn.S -o crtn.o
66
67 $(TOPDIR)lib/crtn.o: crtn.o
68         $(INSTALL) -d $(TOPDIR)lib/
69         cp crtn.o $(TOPDIR)lib/
70 else
71 $(TOPDIR)lib/crti.o:
72         $(INSTALL) -d $(TOPDIR)lib/
73         $(AR) $(ARFLAGS) $(TOPDIR)lib/crti.o
74 $(TOPDIR)lib/crtn.o:
75         $(INSTALL) -d $(TOPDIR)lib/
76         $(AR) $(ARFLAGS) $(TOPDIR)lib/crtn.o
77 endif
78
79
80 headers:
81         $(LN) -fs ../libc/sysdeps/linux/arm/fpu_control.h $(TOPDIR)/include/
82
83 clean:
84         $(RM) *.[oa] *~ core
85         $(RM) bits/sysnum.h
86         $(RM) gmon-start.S
87