diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-17 18:21:26 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-17 18:21:26 +0000 |
commit | f8c4b3ad2fcebf7c7932d01896a33c839b6fb54d (patch) | |
tree | 9526e575579dcd9d2e174f19980044150ee32065 /libc/sysdeps/linux | |
parent | d7eabbbfb8ac6507a97d5e26a70b078808cc7874 (diff) |
Better syscall building mechanism
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/i386/Makefile | 3 |
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)) |