xref: /haiku/src/tests/add-ons/kernel/file_systems/iso9660/iso9660_shell/Jamfile (revision 6e82e428596071bbde44e296d04740f1f5d54d03)
1SubDir HAIKU_TOP src tests add-ons kernel file_systems iso9660 iso9660_shell ;
2
3UsePrivateHeaders fs_shell ;
4
5SEARCH_SOURCE
6	+= [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems iso9660 ] ;
7
8# set some additional defines
9{
10	local defines = [ FDefines FS_SHELL USER DEBUG ] ;
11	SubDirCcFlags $(defines) ;
12	SubDirC++Flags $(defines) -fno-exceptions ;
13}
14
15# platform specific libraries
16local fsShellCommandLibs ;
17if ! $(HOST_PLATFORM_BEOS_COMPATIBLE) {
18	fsShellCommandLibs = $(HOST_NETWORK_LIBS) ;
19}
20
21BuildPlatformMain iso9660_shell
22	:
23	iso9660.cpp
24	iso9660_identify.cpp
25	kernel_interface.cpp
26
27	: <build>fs_shell.a $(HOST_LIBSUPC++) $(HOST_LIBSTDC++)
28	  $(HOST_LIBROOT) $(fsShellCommandLibs)
29;
30