summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-17 18:21:26 +0000
committerEric Andersen <andersen@codepoet.org>2000-10-17 18:21:26 +0000
commitf8c4b3ad2fcebf7c7932d01896a33c839b6fb54d (patch)
tree9526e575579dcd9d2e174f19980044150ee32065 /libc
parentd7eabbbfb8ac6507a97d5e26a70b078808cc7874 (diff)
Better syscall building mechanism
Diffstat (limited to 'libc')
-rw-r--r--libc/sysdeps/linux/i386/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/i386/Makefile b/libc/sysdeps/linux/i386/Makefile
index e4df92b8f..695450961 100644
--- a/libc/sysdeps/linux/i386/Makefile
+++ b/libc/sysdeps/linux/i386/Makefile
@@ -26,8 +26,7 @@ LIBC=$(TOPDIR)libc.a
ASFLAGS=$(CFLAGS)
ASMSRC=syscalls.S
-#The file makefile.objs defines $(ASMOBJS)
-include makefile.objs
+ASMOBJS=$(shell ./list_syscalls.sh)
SSRC=_start.S setjmp.S longjmp.S #fork.S #clone.S
SOBJS=$(patsubst %.S,%.o, $(SSRC))