From cb9136d9843e3756ebc79f91a3a522ed4ca73eda Mon Sep 17 00:00:00 2001 From: Tobias Anderberg Date: Fri, 20 Sep 2002 15:17:16 +0000 Subject: * Added clone() system call. * Proper implementation of bits/syscalls.h, no cheating by just including . * Proper implementation of syscall.S, it no longer contains the __syscall_error, instead it contains code which makes syscall(nr,...) a system call. * Added sysdep.S which contains the code for __syscall_error. * Added some macros to sysdep.h. * Added sys/procfs.h, which is needed when compiling with thread support. * Removed unused syscall-cris.c. --- libc/sysdeps/linux/cris/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libc/sysdeps/linux/cris/Makefile') diff --git a/libc/sysdeps/linux/cris/Makefile b/libc/sysdeps/linux/cris/Makefile index 398139be5..0955be53c 100644 --- a/libc/sysdeps/linux/cris/Makefile +++ b/libc/sysdeps/linux/cris/Makefile @@ -19,7 +19,7 @@ ASFLAGS=$(CFLAGS) CRT0=crt0.c CRT0_OBJ=$(patsubst %.c,%.o, $(CRT0)) -SSRC= setjmp.S __longjmp.S +SSRC= setjmp.S __longjmp.S clone.S sysdep.S syscall.S ifeq ($(UNIFIED_SYSCALL),true) SSRC += __uClibc_syscall.S endif @@ -53,6 +53,7 @@ $(COBJS): %.o : %.c headers: @(TOPDIR=$(TOPDIR) CC=$(CC) /bin/sh $(TOPDIR)/extra/scripts/gen_bits_syscall_h.sh > bits/syscall.h ) +# cd $(TOPDIR)/include/sys && ln -fs ../../libc/sysdeps/linux/m68k/reg.h . clean: rm -f *.[oa] *~ core -- cgit v1.2.3