OSDN Git Service

the generic mmap.c is not good enough for us, we need the syscall6() version
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / x86_64 / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000-2005 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 = crt1.S
23 CRT_OBJ = crt1.o
24 SCRT_OBJ = $(patsubst %,S%, $(CRT_OBJ))
25 CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o
26
27 SSRC=__longjmp.S vfork.S setjmp.S syscall.S bsd-setjmp.S bsd-_setjmp.S clone.S
28 SOBJS=$(patsubst %.S,%.o, $(SSRC))
29
30 CSRC=brk.c sigaction.c __syscall_error.c mmap.c
31 COBJS=$(patsubst %.c,%.o, $(CSRC))
32
33 OBJS=$(SOBJS) $(COBJS)
34
35 OBJ_LIST=../../../obj.sysdeps.$(TARGET_ARCH)
36
37 all: $(OBJ_LIST)
38
39 $(OBJ_LIST): $(OBJS) $(CRT_OBJ) $(SCRT_OBJ) $(CTOR_TARGETS)
40         echo $(patsubst %, sysdeps/linux/$(TARGET_ARCH)/%, $(OBJS)) > $(OBJ_LIST)
41         $(INSTALL) -d $(TOPDIR)lib/
42         cp $(CRT_OBJ) $(SCRT_OBJ) $(TOPDIR)lib/
43
44 $(CRT_OBJ): $(CRT_SRC)
45         $(CC) $(ASFLAGS) -DL_$* $< -c -o $*.o
46         $(STRIPTOOL) -x -R .note -R .comment $*.o
47
48 $(SCRT_OBJ): $(CRT_SRC)
49         $(CC) $(ASFLAGS) $(PIEFLAG) -DL_$* $< -c -o $*.o
50         $(STRIPTOOL) -x -R .note -R .comment $*.o
51
52 $(SOBJS): %.o : %.S
53         $(CC) $(ASFLAGS) -c $< -o $@
54         $(STRIPTOOL) -x -R .note -R .comment $*.o
55
56 $(COBJS): %.o : %.c
57         $(CC) $(CFLAGS) -c $< -o $@
58         $(STRIPTOOL) -x -R .note -R .comment $*.o
59
60 ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y)
61 crti.o: crti.S
62         $(CC) $(ASFLAGS) -c crti.S -o crti.o
63
64 $(TOPDIR)lib/crti.o: crti.o
65         $(INSTALL) -d $(TOPDIR)lib/
66         cp crti.o $(TOPDIR)lib/
67
68 crtn.o: crtn.S
69         $(CC) $(ASFLAGS) -c crtn.S -o crtn.o
70
71 $(TOPDIR)lib/crtn.o: crtn.o
72         $(INSTALL) -d $(TOPDIR)lib/
73         cp crtn.o $(TOPDIR)lib/
74 else
75 $(TOPDIR)lib/crti.o:
76         $(INSTALL) -d $(TOPDIR)lib/
77         $(AR) $(ARFLAGS) $(TOPDIR)lib/crti.o
78 $(TOPDIR)lib/crtn.o:
79         $(INSTALL) -d $(TOPDIR)lib/
80         $(AR) $(ARFLAGS) $(TOPDIR)lib/crtn.o
81 endif
82
83 headers:
84         $(LN) -fs ../libc/sysdeps/linux/x86_64/fpu_control.h $(TOPDIR)/include/
85
86 clean:
87         $(RM) *.[oa] *~ core
88         $(RM) bits/sysnum.h
89         $(RM) gmon-start.S