OSDN Git Service

Patch from psm, vapier, and solar, adding xattr syscalls
[uclinux-h8/uClibc.git] / ldso / ldso / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000-2004 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
20 TOPDIR=../../
21 include $(TOPDIR)Rules.mak
22 LDSO_FULLNAME=ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
23
24 SSPFLAGS=$(call check_gcc,-fno-stack-protector,)
25 # reset to initial (disabling predefined CFLAGS)
26 ASFLAGS=
27
28 XXFLAGS=$(XWARNINGS) $(SSPFLAGS)
29 ifeq ($(DODEBUG),y)
30 # Not really much point in including debugging info, since gdb
31 # can't really debug ldso, since gdb requires help from ldso to
32 # debug things....
33 XXFLAGS+=-Os #-g3
34 else
35 XXFLAGS+=$(OPTIMIZATION)
36 endif
37 XXFLAGS+= $(XARCH_CFLAGS) $(CPU_CFLAGS) $(PICFLAG) \
38         -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
39         -fno-builtin -nostdinc -D_LIBC -I$(TOPDIR)ldso/include -I. -I$(TOPDIR)include
40
41 # BEWARE!!! At least mips* will die if -O0 is used!!!
42 XXFLAGS:=$(XXFLAGS:-O0=-O1)
43 XXFLAGS+=-isystem $(shell $(CC) -print-file-name=include)
44 LDFLAGS=$(CPU_LDFLAGS-y) -z now -Bsymbolic -shared --warn-common --export-dynamic --sort-common \
45         -z combreloc --discard-locals --discard-all --no-undefined
46
47 CSRC= ldso.c
48 COBJS=$(patsubst %.c,%.o, $(CSRC))
49 ASRC=$(shell ls $(TARGET_ARCH)/*.S)
50 AOBJS=$(patsubst %.S,%.o, $(ASRC))
51 OBJS=$(AOBJS) $(COBJS)
52
53 ifneq ($(strip $(SUPPORT_LD_DEBUG)),y)
54 LDFLAGS+=-s
55 endif
56
57 ifeq ($(strip $(SUPPORT_LD_DEBUG)),y)
58 XXFLAGS+=-D__SUPPORT_LD_DEBUG__
59 endif
60
61 ifeq ($(strip $(SUPPORT_LD_DEBUG_EARLY)),y)
62 XXFLAGS+=-D__SUPPORT_LD_DEBUG_EARLY__
63 endif
64
65 #This stuff will not work with -fomit-frame-pointer
66 XXFLAGS := $(XXFLAGS:-fomit-frame-pointer=)
67
68 all: lib
69
70 lib:: $(OBJS) $(DLINK_OBJS)
71         $(LD) $(LDFLAGS) -e _dl_boot -soname=$(UCLIBC_LDSO) \
72                 -o $(LDSO_FULLNAME) $(OBJS) $(LIBGCC);
73         $(INSTALL) -d $(TOPDIR)lib
74         $(INSTALL) -m 755 $(LDSO_FULLNAME) $(TOPDIR)lib
75         $(LN) -sf $(LDSO_FULLNAME) $(TOPDIR)lib/$(UCLIBC_LDSO)
76
77 $(COBJS): %.o : %.c
78         $(CC) $(XXFLAGS) -I../libdl -c $< -o $@
79         $(STRIPTOOL) -x -R .note -R .comment $*.o
80
81 $(AOBJS): %.o : %.S
82         $(CC) $(XXFLAGS) $(ASFLAGS) -I../libdl -c $< -o $@
83         $(STRIPTOOL) -x -R .note -R .comment $*.o
84
85 ldso.o: $(CSRC)
86
87 clean:
88         $(RM) $(UCLIBC_LDSO)* $(OBJS) $(LDSO_FULLNAME)* core *.o *.a *.s *.i ldso.h *~