From 238576af81ce5d328ef67cf75180e2ba761df553 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sat, 5 Oct 2002 17:33:22 +0000 Subject: [PATCH] Moved the syscalls.S file to the os/ subdirectory (better fits in there). git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1389 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/Jamfile | 1 - src/kernel/libroot/os/Jamfile | 1 + src/kernel/libroot/{ => os}/syscalls.S | 16 ++++++++-------- 3 files changed, 9 insertions(+), 9 deletions(-) rename src/kernel/libroot/{ => os}/syscalls.S (92%) diff --git a/src/kernel/libroot/Jamfile b/src/kernel/libroot/Jamfile index f76c8606dc..c774735e4d 100755 --- a/src/kernel/libroot/Jamfile +++ b/src/kernel/libroot/Jamfile @@ -2,7 +2,6 @@ SubDir OBOS_TOP src kernel libroot ; KernelObjects <$(SOURCE_GRIST)>libroot_init.c - <$(SOURCE_GRIST)>syscalls.S : -fPIC -DPIC ; diff --git a/src/kernel/libroot/os/Jamfile b/src/kernel/libroot/os/Jamfile index 2a014724c9..c7ba613eaf 100644 --- a/src/kernel/libroot/os/Jamfile +++ b/src/kernel/libroot/os/Jamfile @@ -9,6 +9,7 @@ KernelObjects <$(SOURCE_GRIST)>team.c <$(SOURCE_GRIST)>thread.c <$(SOURCE_GRIST)>time.c + <$(SOURCE_GRIST)>syscalls.S : -fPIC -DPIC ; diff --git a/src/kernel/libroot/syscalls.S b/src/kernel/libroot/os/syscalls.S similarity index 92% rename from src/kernel/libroot/syscalls.S rename to src/kernel/libroot/os/syscalls.S index 0060dd12da..1d537b1da2 100644 --- a/src/kernel/libroot/syscalls.S +++ b/src/kernel/libroot/os/syscalls.S @@ -1,26 +1,26 @@ #ifdef ARCH_x86 -#include "arch/x86/syscalls.inc" +# include "arch/x86/syscalls.inc" #endif #ifdef ARCH_alpha -#include "arch/alpha/syscalls.inc" +# include "arch/alpha/syscalls.inc" #endif #ifdef ARCH_sh4 -#include "arch/sh4/syscalls.inc" +# include "arch/sh4/syscalls.inc" #endif #ifdef ARCH_sparc -#include "arch/sparc/syscalls.inc" +# include "arch/sparc/syscalls.inc" #endif #ifdef ARCH_sparc64 -#include "arch/sparc64/syscalls.inc" +# include "arch/sparc64/syscalls.inc" #endif #ifdef ARCH_mips -#include "arch/mips/syscalls.inc" +# include "arch/mips/syscalls.inc" #endif #ifdef ARCH_ppc -#include "arch/ppc/syscalls.inc" +# include "arch/ppc/syscalls.inc" #endif #ifdef ARCH_m68k -#include "arch/m68k/syscalls.inc" +# include "arch/m68k/syscalls.inc" #endif /* ToDo: we should do something about this file; either machine generate it */