OSDN Git Service

Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all objects at...
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / nios / 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 CRT_SRC := crt0.S
23 CRT_OBJ := crt0.o crt1.o
24
25 SSRC := __longjmp.S bsd-_setjmp.S bsd-setjmp.S setjmp.S clone.S vfork.S
26 SOBJ := $(patsubst %.S,%.o, $(SSRC))
27
28 CSRC := brk.c crtbegin.c crtend.c
29 COBJ := $(patsubst %.c,%.o, $(CSRC))
30
31 OBJS := $(SOBJ) $(COBJ)
32
33 OBJ_LIST := ../../../obj.sysdeps.$(TARGET_ARCH)
34
35 all: $(OBJ_LIST)
36
37 $(OBJ_LIST): $(OBJS) $(CRT_OBJ)
38         $(STRIPTOOL) -x -R .note -R .comment $^
39         $(INSTALL) -d $(TOPDIR)lib/
40         cp $(CRT_OBJ) $(TOPDIR)lib/
41         echo $(patsubst %, sysdeps/linux/$(TARGET_ARCH)/%, $(OBJS)) > $@
42
43 $(CRT_OBJ): $(CRT_SRC)
44         $(CC) $(ASFLAGS) -DL_$* $< -c -o $*.o
45
46 $(SOBJ): %.o : %.S
47         $(CC) $(ASFLAGS) -c $< -o $@
48
49 $(COBJ): %.o : %.c
50         $(CC) $(CFLAGS) -c $< -o $@
51
52 headers:
53         $(LN) -fs ../libc/sysdeps/linux/nios/fpu_control.h $(TOPDIR)/include/
54
55 clean:
56         $(RM) *.o *~ core