OSDN Git Service

This syncs things up with my local tree. Mainly changes installer
[uclinux-h8/uClibc.git] / ldso / ldso / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000 by Lineo, inc.
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 # Derived in part from the Linux-8086 C library, the GNU C Library, and several
20 # other sundry sources.  Files within this library are copyright by their
21 # respective copyright holders.
22
23
24 TOPDIR=../../
25 include $(TOPDIR)Rules.mak
26
27 TARGET_CFLAGS += #-DDL_DEBUG #-funroll-loops
28
29
30
31 LDSO_FULLNAME=ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).so
32 TARGET_CFLAGS+=-fPIC -D__PIC__ -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
33         -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
34         -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR); pwd)\"
35 CSRC= boot1.c hash.c readelflib1.c $(TARGET_ARCH)/elfinterp.c
36 COBJS=$(patsubst %.c,%.o, $(CSRC))
37 ASRC=$(shell ls $(TARGET_ARCH)/*.S)
38 AOBJS=$(patsubst %.S,%.o, $(ASRC))
39 OBJS=$(AOBJS) $(COBJS)
40
41
42 all: lib
43
44 lib:: ld.so.h $(OBJS) $(DLINK_OBJS)
45         $(TARGET_CC) -e _dl_boot $(TARGET_LDFLAGS) -nostdlib -shared -o $(LDSO_FULLNAME) \
46             -Wl,-soname,$(UCLIBC_LDSO) $(OBJS)
47         install -d $(TOPDIR)lib 
48         install -m 755 $(LDSO_FULLNAME) $(TOPDIR)lib
49         (cd $(TOPDIR)lib;ln -sf $(LDSO_FULLNAME) $(UCLIBC_LDSO))
50
51 ld.so.h: Makefile
52         echo "#define _dl_static_progname \""$(UCLIBC_LDSO)"\"" > ld.so.h
53
54 $(COBJS): %.o : %.c
55         $(TARGET_CC) $(TARGET_CFLAGS) -I. -I./$(TARGET_ARCH) -I../libdl -c $< -o $@
56         $(STRIPTOOL) -x -R .note -R .comment $*.o
57
58 clean::
59         $(RM) -f $(UCLIBC_LDSO)* $(OBJS) $(LDSO_FULLNAME)* core *.o *.a *.s *.i tmp_make foo *~
60