diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-07-24 19:51:46 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-07-24 19:51:46 +0000 |
commit | 255cd531d67d4c5d110409e2a24e2aa5a6249a7a (patch) | |
tree | 9d1ef2999a4e4fc28644e01376684862e03b82dc /libc/sysdeps/linux/i386/Makefile | |
parent | bb364bda4be59f9141c1727524ffe459a742ddee (diff) |
Add support for people calling syscall()
-Erik
Diffstat (limited to 'libc/sysdeps/linux/i386/Makefile')
-rw-r--r-- | libc/sysdeps/linux/i386/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/i386/Makefile b/libc/sysdeps/linux/i386/Makefile index c15751ee1..28c64991e 100644 --- a/libc/sysdeps/linux/i386/Makefile +++ b/libc/sysdeps/linux/i386/Makefile @@ -36,10 +36,8 @@ CRT0_OBJ=$(patsubst %.S,%.o, $(CRT0)) endif -SSRC=__longjmp.S vfork.S clone.S setjmp.S bsd-setjmp.S bsd-_setjmp.S -ifeq ($(UNIFIED_SYSCALL),true) - SSRC += __uClibc_syscall.S -endif +SSRC=__longjmp.S vfork.S clone.S setjmp.S bsd-setjmp.S \ + bsd-_setjmp.S syscall.S SOBJS=$(patsubst %.S,%.o, $(SSRC)) CSRC=brk.c |