OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [linux/] [uClibc/] [libc/] [sysdeps/] [linux/] [sparc/] [Makefile] - Blame information for rev 1325

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1325 phoenix
# Makefile for uClibc
2
#
3
# Copyright (C) 2000-2003 Erik Andersen 
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
ASFLAGS=$(CFLAGS)
22
 
23
CRT0_SRC = crt0.c
24
CRT0_OBJ = crt0.o crt1.o
25
CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o
26
 
27
SSRC=__longjmp.S fork.S vfork.S clone.S setjmp.S bsd-setjmp.S bsd-_setjmp.S \
28
        urem.S udiv.S umul.S sdiv.S rem.S
29
SOBJS=$(patsubst %.S,%.o, $(SSRC))
30
 
31
CSRC=brk.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) $(CFLAGS) -DL_$* $< -c -o $*.o
46
        $(STRIPTOOL) -x -R .note -R .comment $*.o
47
 
48
$(SOBJS): %.o : %.S
49
        $(CC) $(CFLAGS) -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) $(CFLAGS) -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) $(CFLAGS) -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/sparc/fpu_control.h $(TOPDIR)/include/
82
 
83
clean:
84
        $(RM) *.[oa] *~ core
85
        $(RM) bits/sysnum.h

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.