diff --git a/src/tests/kernel/boot/heap/Jamfile b/src/tests/kernel/boot/heap/Jamfile new file mode 100644 index 0000000000..5e68cc627f --- /dev/null +++ b/src/tests/kernel/boot/heap/Jamfile @@ -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 ] ; +