OSDN Git Service

Ok, this should finish off my massive ro-organization. The source
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / sh / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000 by Lineo, inc.
4 # Copyright (C) 2001 by Hewlett-Packard Australia
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 ASFLAGS=$(CFLAGS)
27
28 CFLAGS+= -I../ -D__ASSEMBLER__ -DASM_GLOBAL_DIRECTIVE=.globl
29
30 TARGET_MACHINE_TYPE=$(shell $(CC) -dumpmachine)
31
32 CRT0=crt0.S
33 CRT0_OBJ=$(patsubst %.S,%.o, $(CRT0))
34
35 SSRC=setjmp.S bsd-setjmp.S bsd-_setjmp.S __longjmp.S
36 SOBJS=$(patsubst %.S,%.o, $(SSRC))
37
38 CSRC=vfork.c _mmap.c longjmp.c jmp-unwind.c
39 COBJS=$(patsubst %.c,%.o, $(CSRC))
40
41 OBJS=$(SOBJS) $(MOBJ) $(COBJS)
42
43
44 all: $(OBJS) $(LIBC)
45
46 $(LIBC): ar-target 
47
48 ar-target: $(OBJS) $(CRT0_OBJ)
49         $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
50         cp $(CRT0_OBJ) $(TOPDIR)libc/$(CRT0_OBJ)
51
52 $(CRT0_OBJ): %.o : %.S
53         $(CC) $(CFLAGS) -c $< -o $@
54         $(STRIPTOOL) -x -R .note -R .comment $*.o
55
56 $(SOBJS): %.o : %.S
57         $(CC) $(CFLAGS) -c $< -o $@
58         $(STRIPTOOL) -x -R .note -R .comment $*.o
59
60 $(COBJS): %.o : %.c
61         $(CC) $(CFLAGS) -c $< -o $@
62         $(STRIPTOOL) -x -R .note -R .comment $*.o
63
64 clean:
65         rm -f *.[oa] *~ core
66