diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-04-26 22:34:59 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:43 +0200 |
commit | 5fc54227982c5e5edd060396f9fe2639795622d0 (patch) | |
tree | 840ff5274a79c3c8b452417fdb367f49bc1cccad /libc/sysdeps/linux/mips | |
parent | 4c5395c9438a98479f17e6bdc88b1ffbe14cae10 (diff) |
make arch specific cacheflush, readahead and sysmips LINUX_SPECIFIC dependent
Remove the related headers.
Adapt sh's type to the one used everywhere and add prototype for it.
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/mips')
-rw-r--r-- | libc/sysdeps/linux/mips/Makefile.arch | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/mips/Makefile.arch b/libc/sysdeps/linux/mips/Makefile.arch index 6db0b2a84..fce99f813 100644 --- a/libc/sysdeps/linux/mips/Makefile.arch +++ b/libc/sysdeps/linux/mips/Makefile.arch @@ -7,8 +7,11 @@ CSRC := \ __longjmp.c brk.c setjmp_aux.c \ - cacheflush.c pread_write.c sigaction.c sysmips.c _test_and_set.c \ - readahead.c + pread_write.c sigaction.c _test_and_set.c + +ifeq ($(UCLIBC_LINUX_SPECIFIC),y) +CSRC += cacheflush.c readahead.c sysmips.c +endif SSRC := bsd-_setjmp.S bsd-setjmp.S setjmp.S syscall.S pipe.S syscall_error.S |