moved fenv arch implementations to their respective directories

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35527 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2010-02-19 22:48:35 +00:00
parent 75e7a5adae
commit 87c1c0e443
8 changed files with 15 additions and 12 deletions

View File

@ -15,7 +15,6 @@ local librootObjects =
posix_crypt.o posix_crypt.o
posix_locale.o posix_locale.o
posix_main.o posix_main.o
posix_fenv.o
posix_pthread.o posix_pthread.o
posix_signal.o posix_signal.o
posix_stdio.o posix_stdio.o

View File

@ -30,17 +30,6 @@ MergeObject posix_main.o :
utime.c utime.c
; ;
if $(TARGET_ARCH) = x86 {
SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src system libroot posix fenv i387 ] ;
} else if $(TARGET_ARCH) = ppc {
SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src system libroot posix fenv powerpc ] ;
} else if $(TARGET_ARCH) = arm {
SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src system libroot posix fenv arm ] ;
}
MergeObject posix_fenv.o :
fenv.c
;
SubInclude HAIKU_TOP src system libroot posix arch $(TARGET_ARCH) ; SubInclude HAIKU_TOP src system libroot posix arch $(TARGET_ARCH) ;
SubInclude HAIKU_TOP src system libroot posix crypt ; SubInclude HAIKU_TOP src system libroot posix crypt ;

View File

@ -0,0 +1,13 @@
SubDir HAIKU_TOP src system libroot posix arch arm ;
local genericSources =
;
MergeObject posix_arch_$(TARGET_ARCH).o :
fenv.c
$(genericSources)
;
SEARCH on [ FGristFiles $(genericSources) ]
= [ FDirName $(SUBDIR) $(DOTDOT) generic ] ;

View File

@ -6,6 +6,7 @@ local genericSources =
; ;
MergeObject posix_arch_$(TARGET_ARCH).o : MergeObject posix_arch_$(TARGET_ARCH).o :
fenv.c
sigsetjmp.S sigsetjmp.S
siglongjmp.S siglongjmp.S

View File

@ -8,6 +8,7 @@ local genericSources =
; ;
MergeObject posix_arch_$(TARGET_ARCH).o : MergeObject posix_arch_$(TARGET_ARCH).o :
fenv.c
sigsetjmp.S sigsetjmp.S
siglongjmp.S siglongjmp.S