Files
haiku-beta6/src/tests/kernel/boot/loader/Jamfile
T
Axel Dörfler 572edf3377 Added the start of a userland boot loader test (i.e. userland platform
bindings for the stage2 boot loader).


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4617 a95241bf-73f2-0310-859d-f6bbb57e9c96
2003-09-11 17:28:58 +00:00

57 lines
1.2 KiB
Plaintext

SubDir OBOS_TOP src tests kernel boot loader ;
UsePrivateHeaders [ FDirName kernel ] ;
UsePrivateHeaders [ FDirName kernel disk_device_manager ] ;
UsePrivateHeaders [ FDirName storage ] ;
SubDirHdrs $(OBOS_TOP) headers private kernel arch $(OBOS_ARCH) ;
ObjectDefines
heap.cpp
main.cpp
vfs.cpp
partitions.cpp
stdio.cpp
RootFileSystem.cpp
:
malloc=boot_malloc free=boot_free
read_pos=boot_read_pos close=boot_close
;
# This lets the correct stdio.h header be available
# on the build platform.
# This will be fixed with the move to GNU's stdio header
if $(OS) = "LINUX" {
# SubDirC++Flags -include /usr/include/stdio.h ;
} else {
SubDirC++Flags -include /boot/develop/headers/posix/stdio.h ;
}
SimpleTest BootLoaderTest :
platform_start.cpp
#platform_console.cpp
platform_debug.cpp
platform_devices.cpp
platform_heap.cpp
Handle.cpp
main.cpp
vfs.cpp
partitions.cpp
heap.cpp
RootFileSystem.cpp
list.c
:
: -fno-builtin
;
# Tell Jam where to find the utility sources
SEARCH on [ FGristFiles list.c ]
= [ FDirName $(OBOS_TOP) src kernel core util ] ;
SEARCH on [ FGristFiles
main.cpp vfs.cpp partitions.cpp
heap.cpp RootFileSystem.cpp
] = [ FDirName $(OBOS_TOP) src kernel boot loader ] ;