summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/arm/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-12 19:21:40 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-12 19:21:40 +0000
commit67ed3d4a5cc3deaed2433756d37d9a11ad4b04bc (patch)
treed3bac1836a358af990394fc093aefac675a304bc /libc/sysdeps/linux/arm/Makefile
parent12e7555ea225f516edc8bd5203d6a102d2f92861 (diff)
A small patch from Erwin Authried <eauth@softsys.co.at>
*) changed ARM crt0.S / crt0pic.S selection -- depends on DOPIC now. *) Minor tweek to syscall definitions
Diffstat (limited to 'libc/sysdeps/linux/arm/Makefile')
-rw-r--r--libc/sysdeps/linux/arm/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/arm/Makefile b/libc/sysdeps/linux/arm/Makefile
index a27d20856..009d7d8e1 100644
--- a/libc/sysdeps/linux/arm/Makefile
+++ b/libc/sysdeps/linux/arm/Makefile
@@ -26,12 +26,12 @@ ASFLAGS=$(CFLAGS)
TARGET_MACHINE_TYPE=$(shell $(CC) -dumpmachine)
-ifeq ($(TARGET_MACHINE_TYPE),arm-pic-elf)
+ifeq ($(DOPIC),true)
CRT0=crt0pic.S
else
CRT0=crt0.S
endif
-CRT0_OBJ=$(patsubst %.S,%.o, $(CRT0))
+CRT0_OBJ=crt0.o
SSRC=longjmp.S setjmp.S vfork.S
SOBJS=$(patsubst %.S,%.o, $(SSRC))
@@ -50,7 +50,7 @@ ar-target: $(OBJS) $(CRT0_OBJ)
$(AR) $(ARFLAGS) $(LIBC) $(OBJS)
cp $(CRT0_OBJ) $(TOPDIR)libc/$(CRT0_OBJ)
-$(CRT0_OBJ): %.o : %.S
+$(CRT0_OBJ): $(CRT0)
$(CC) $(CFLAGS) -c $< -o $@
$(STRIPTOOL) -x -R .note -R .comment $*.o