summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/i386/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/i386/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/i386/Makefile')
-rw-r--r--libc/sysdeps/linux/i386/Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/libc/sysdeps/linux/i386/Makefile b/libc/sysdeps/linux/i386/Makefile
index 868de2e6b..566bd47d0 100644
--- a/libc/sysdeps/linux/i386/Makefile
+++ b/libc/sysdeps/linux/i386/Makefile
@@ -28,13 +28,10 @@ ASFLAGS=$(CFLAGS)
SSRC=longjmp.S setjmp.S #_start.S #fork.S #clone.S
SOBJS=$(patsubst %.S,%.o, $(SSRC))
-MSRC=syscalls.c
-MOBJ=$(shell ./list_syscalls.sh)
-
CSRC=readdir.c #select.c
COBJS=$(patsubst %.c,%.o, $(CSRC))
-OBJS=$(SOBJS) $(COBJS) $(MOBJ)
+OBJS=$(SOBJS) $(COBJS)
all: $(OBJS) $(LIBC)
@@ -48,11 +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