xref: /haiku/src/tests/add-ons/kernel/file_systems/xfs/xfs_shell/Jamfile (revision 4b918abdb02a26a770d898594eaaccc6f1726e9b)
1SubDir HAIKU_TOP src tests add-ons kernel file_systems xfs xfs_shell ;
2
3SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems xfs ] ;
4
5# prevent inclusion of HaikuBuildCompatibility.h
6DEFINES += HAIKU_BUILD_COMPATIBILITY_H ;
7
8# set some additional defines
9{
10	local defines =
11		FS_SHELL
12		;
13
14	defines = [ FDefines $(defines) ] ;
15
16	local c++flags = ;
17
18	SubDirCcFlags $(defines) -Wno-multichar ;
19	SubDirC++Flags $(defines) $(c++flags) -Wno-multichar -fno-rtti ;
20}
21
22# platform specific libraries
23local fsShellCommandLibs ;
24if ! $(HOST_PLATFORM_HAIKU_COMPATIBLE) {
25	fsShellCommandLibs = $(HOST_NETWORK_LIBS) ;
26}
27
28UseHeaders [ FDirName $(HAIKU_TOP) headers build ] : true ;
29
30if ! $(HOST_PLATFORM_HAIKU_COMPATIBLE) {
31	UseHeaders [ FDirName $(HAIKU_TOP) headers build os ] : true ;
32	UseHeaders [ FDirName $(HAIKU_TOP) headers build os support ] : true ;
33}
34
35UsePrivateHeaders shared storage ;
36UsePrivateHeaders fs_shell ;
37UseHeaders [ FDirName $(HAIKU_TOP) headers private ] : true ;
38UseHeaders [ FDirName $(HAIKU_TOP) src tools fs_shell ] ;
39
40local xfsSource =
41	xfs.cpp
42	Volume.cpp
43	kernel_interface.cpp
44;
45
46BuildPlatformMergeObject <build>xfs_shell.o : $(xfsSource) ;
47
48BuildPlatformMain <build>xfs_shell
49	:
50	:
51	<build>xfs_shell.o
52	<build>fs_shell.a $(HOST_LIBSUPC++) $(HOST_LIBSTDC++)
53	$(HOST_LIBROOT) $(fsShellCommandLibs)
54;
55
56BuildPlatformMain <build>xfs_fuse
57	:
58	:
59	<build>xfs_shell.o
60	<build>fuse_module.a
61	$(HOST_LIBSUPC++) $(HOST_LIBSTDC++)
62	$(HOST_STATIC_LIBROOT) $(fsShellCommandLibs) fuse
63;
64
65SEARCH on [ FGristFiles QueryParserUtils.cpp ]
66	+= [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems shared ] ;
67