OSDN Git Service

Enable trace support by default, since it only costs 300 bytes
[uclinux-h8/uClibc.git] / ldso / ldso / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000 by Lineo, inc.
4 # Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
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
25 TOPDIR=../../
26 DOPIC=true
27 include $(TOPDIR)Rules.mak
28 LDSO_FULLNAME=ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).so
29
30 # Enable this to enable all the code needed to support traditional ldd
31 # (i.e. where the shared library loader does all the heavy lifting)
32 # Since this currently only saves about 300 bytes, I'm going to leave 
33 # it enabled...
34 XXFLAGS+= -DDL_TRACE
35
36 # Enable this to enable debugging output from ld.so
37 #XXFLAGS+= -DDL_DEBUG
38 #XXFLAGS+= -DDL_DEBUG_SYMBOLS
39
40 XXFLAGS+=-DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
41         -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
42         -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\"
43 LDFLAGS=-shared --warn-common --export-dynamic --sort-common \
44         -z combreloc --discard-locals --discard-all
45 CSRC= ldso.c #hash.c readelflib1.c $(TARGET_ARCH)/elfinterp.c
46 COBJS=$(patsubst %.c,%.o, $(CSRC))
47 ASRC=$(shell ls $(TARGET_ARCH)/*.S)
48 AOBJS=$(patsubst %.S,%.o, $(ASRC))
49 OBJS=$(AOBJS) $(COBJS)
50
51 ifneq ($(strip $(DODEBUG)),true)
52 LDFLAGS+=-s
53 endif
54
55 all: lib
56
57 lib:: ldso.h $(OBJS) $(DLINK_OBJS)
58         $(LD) $(LDFLAGS) -e _dl_boot -soname=$(UCLIBC_LDSO) \
59                 -o $(LDSO_FULLNAME) $(OBJS);
60         install -d $(TOPDIR)lib 
61         install -m 755 $(LDSO_FULLNAME) $(TOPDIR)lib
62         (cd $(TOPDIR)lib && ln -sf $(LDSO_FULLNAME) $(UCLIBC_LDSO))
63
64 ldso.h: Makefile
65         echo "const char *_dl_progname=\""$(UCLIBC_LDSO)"\";" > ldso.h
66         echo "#include \"$(TARGET_ARCH)/elfinterp.c\"" >> ldso.h
67
68
69 $(COBJS): %.o : %.c
70         $(CC) $(CFLAGS) $(XXFLAGS) -I. -I./$(TARGET_ARCH) -I../libdl -c $< -o $@
71         $(STRIPTOOL) -x -R .note -R .comment $*.o
72
73 $(AOBJS): %.o : %.S
74         $(CC) $(CFLAGS) -I. -I./$(TARGET_ARCH) -I../libdl -c $< -o $@
75         $(STRIPTOOL) -x -R .note -R .comment $*.o
76
77 ldso.o: ldso.c hash.c readelflib1.c $(TARGET_ARCH)/elfinterp.c \
78         ld_hash.h ld_string.h ld_syscall.h ldso.h linuxelf.h
79
80 clean::
81         $(RM) -f $(UCLIBC_LDSO)* $(OBJS) $(LDSO_FULLNAME)* core *.o *.a *.s *.i ldso.h *~
82