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
This commit is contained in:
parent
55aa2e19ad
commit
238576af81
@ -2,7 +2,6 @@ SubDir OBOS_TOP src kernel libroot ;
|
||||
|
||||
KernelObjects
|
||||
<$(SOURCE_GRIST)>libroot_init.c
|
||||
<$(SOURCE_GRIST)>syscalls.S
|
||||
:
|
||||
-fPIC -DPIC
|
||||
;
|
||||
|
@ -9,6 +9,7 @@ KernelObjects
|
||||
<$(SOURCE_GRIST)>team.c
|
||||
<$(SOURCE_GRIST)>thread.c
|
||||
<$(SOURCE_GRIST)>time.c
|
||||
<$(SOURCE_GRIST)>syscalls.S
|
||||
:
|
||||
-fPIC -DPIC
|
||||
;
|
||||
|
@ -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 */
|
Loading…
Reference in New Issue
Block a user