diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-05 02:04:16 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-05 02:04:16 +0000 |
commit | 84f5d5e948043704035d9fd4708e898bd3038ba6 (patch) | |
tree | d66cd4603a9a048d7d1dbcbf3f2c6b378efad19f /libc/sysdeps/linux/sh/Makefile | |
parent | 6966e6c4edf576c92a33d046705e1f458de772f2 (diff) |
Continue the conversion to using per-arch crti.S and crtn.S
Diffstat (limited to 'libc/sysdeps/linux/sh/Makefile')
-rw-r--r-- | libc/sysdeps/linux/sh/Makefile | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/sh/Makefile b/libc/sysdeps/linux/sh/Makefile index 030b06a58..63f925b01 100644 --- a/libc/sysdeps/linux/sh/Makefile +++ b/libc/sysdeps/linux/sh/Makefile @@ -26,6 +26,7 @@ SFLAGS= $(CFLAGS) -D__ASSEMBLER__ CRT0_SRC = crt0.S CRT0_OBJ = crt0.o crt1.o gcrt1.o CRT0_DEPS=gmon-start.S +CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o SSRC=setjmp.S __longjmp.S vfork.S clone.S SOBJS=$(patsubst %.S,%.o, $(SSRC)) @@ -40,7 +41,7 @@ all: $(OBJS) $(LIBC) $(LIBC): ar-target -ar-target: $(OBJS) $(CRT0_OBJ) +ar-target: $(OBJS) $(CRT0_OBJ) $(CTOR_TARGETS) $(AR) $(ARFLAGS) $(LIBC) $(OBJS) cp $(CRT0_OBJ) $(TOPDIR)lib/ @@ -66,6 +67,30 @@ gmon-start.S: ../common/gmon-start.c gcrt1.o: $(CRT0_DEPS) endif +ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y) +crti.o: crti.S + $(CC) $(SAFECFLAGS) -c crti.S -o crti.o + +$(TOPDIR)lib/crti.o: crti.o + $(INSTALL) -d $(TOPDIR)lib/ + cp crti.o $(TOPDIR)lib/ + +crtn.o: crtn.S + $(CC) $(SAFECFLAGS) -c crtn.S -o crtn.o + +$(TOPDIR)lib/crtn.o: crtn.o + $(INSTALL) -d $(TOPDIR)lib/ + cp crtn.o $(TOPDIR)lib/ +else +$(TOPDIR)lib/crti.o: + $(INSTALL) -d $(TOPDIR)lib/ + $(AR) $(ARFLAGS) $(TOPDIR)lib/crti.o +$(TOPDIR)lib/crtn.o: + $(INSTALL) -d $(TOPDIR)lib/ + $(AR) $(ARFLAGS) $(TOPDIR)lib/crtn.o +endif + + headers: $(LN) -fs ../libc/sysdeps/linux/sh/fpu_control.h $(TOPDIR)/include/ |