A Jamfile for the heapTest.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3644 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2003-06-24 18:11:25 +00:00
parent 4f621b0aa3
commit e548161b59
+22
View File
@@ -0,0 +1,22 @@
SubDir OBOS_TOP src tests kernel boot heap ;
UseHeaders [ PublicHeaders support ] ;
UsePrivateHeaders kernel ;
SubDirHdrs $(OBOS_TOP) headers private kernel arch $(OBOS_ARCH) ;
SubDirHdrs $(OBOS_TOP) headers private kernel boot platform $(OBOS_BOOT_PLATFORM) ;
ObjectDefines heap.cpp : malloc=heap_malloc free=heap_free ;
BuildPlatformMain heapTest :
heapTest.cpp
heap.cpp
:
;
# Tell Jam where to find the utility sources
SEARCH on [ FGristFiles
heap.cpp
] = [ FDirName $(OBOS_TOP) src kernel boot loader ] ;