Fixed building of the btreeTest in the new tree.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@243 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2002-07-15 15:57:02 +00:00
parent abb579331f
commit 296e9ce964
@@ -2,10 +2,12 @@ SubDir OBOS_TOP src tests add-ons kernel file_systems befs btree ;
SubDirHdrs $(OBOS_TOP) src add-ons kernel file_systems befs ; SubDirHdrs $(OBOS_TOP) src add-ons kernel file_systems befs ;
rule FPreIncludes { return -include\ $(<) ; }
{ {
local defines = [ FDefines USER DEBUG ] ; # _NO_INLINE_ASM local defines = [ FDefines USER DEBUG ] ; # _NO_INLINE_ASM
SubDirCcFlags $(defines) -fno-exceptions -fno-rtti ; #-fcheck-memory-usage local preIncludes = [ FPreIncludes ./Journal.h ./Inode.h ] ;
SubDirC++Flags $(defines) -fno-exceptions -fno-rtti ; #-fcheck-memory-usage SubDirC++Flags $(defines) $(preIncludes) -fno-exceptions -fno-rtti ; #-fcheck-memory-usage
} }
SimpleTest btreeTest SimpleTest btreeTest
@@ -14,9 +16,10 @@ SimpleTest btreeTest
Inode.cpp Inode.cpp
cache.cpp cache.cpp
BPlusTree.cpp BPlusTree.cpp
Utility.cpp
Debug.cpp Debug.cpp
: be ; : be ;
# Tell Jam where to find these sources # Tell Jam where to find these sources
SEARCH on [ FGristFiles BPlusTree.cpp Debug.cpp ] SEARCH on [ FGristFiles BPlusTree.cpp Utility.cpp Debug.cpp ]
= [ FDirName $(OBOS_TOP) src add-ons kernel file_systems befs ] ; = [ FDirName $(OBOS_TOP) src add-ons kernel file_systems befs ] ;