summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/arm/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-25 07:12:13 +0000
committerEric Andersen <andersen@codepoet.org>2000-10-25 07:12:13 +0000
commit539adfd7c7cbc7d6d3bea94eb1aa2a7103ca71c0 (patch)
tree69b3a3e6727a2ed28608acc0a2f41f32787404a6 /libc/sysdeps/linux/arm/Makefile
parentb7aed1d7020298382852a718726b218afe7dfcc7 (diff)
Move syscalls to sysdeps/linux/common (since they are common).
Remove _start.S since I now have a portable C version.
Diffstat (limited to 'libc/sysdeps/linux/arm/Makefile')
-rw-r--r--libc/sysdeps/linux/arm/Makefile7
1 files changed, 0 insertions, 7 deletions
diff --git a/libc/sysdeps/linux/arm/Makefile b/libc/sysdeps/linux/arm/Makefile
index 2146ef053..afa9dbbf5 100644
--- a/libc/sysdeps/linux/arm/Makefile
+++ b/libc/sysdeps/linux/arm/Makefile
@@ -28,9 +28,6 @@ ASFLAGS=$(CFLAGS)
SSRC=_start.S
SOBJS=$(patsubst %.S,%.o, $(SSRC))
-MSRC=syscalls.c
-MOBJ=$(shell ./list_syscalls.sh)
-
CSRC=divsi3.c
COBJS=$(patsubst %.c,%.o, $(CSRC))
@@ -48,10 +45,6 @@ $(SOBJS):
$(CC) $(CFLAGS) $< -c $*.S -o $*.o
$(STRIPTOOL) -x -R .note -R .comment $*.o
-$(MOBJ): $(MSRC)
- $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
- $(STRIPTOOL) -x -R .note -R .comment $*.o
-
$(COBJS):
$(CC) $(CFLAGS) $< -c $*.c -o $*.o
$(STRIPTOOL) -x -R .note -R .comment $*.o