Add the newly introduced src/build/cpp_support.cpp to the sources when building under Linux.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11606 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-03-06 16:51:58 +00:00
parent 8b737816c4
commit a8e00c29fe
1 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,11 @@
SubDir OBOS_TOP src kernel core ;
local buildSources = ;
if $(OS) != BEOS {
SEARCH_SOURCE += [ FDirName $(OBOS_TOP) src build ] ;
buildSources = cpp_support.cpp ;
}
{
local defines =
OBOS_ARCH=\\\"$(OBOS_ARCH)\\\"
@ -42,6 +48,8 @@ KernelMergeObject kernel_core.o :
thread.c
timer.c
user_debugger.cpp
$(buildSources)
: -fno-pic
;