xref: /haiku/src/kits/support/Jamfile (revision 37fedaf8494b34aad811abcc49e79aa32943f880)
1SubDir HAIKU_TOP src kits support ;
2
3SetSubDirSupportedPlatforms haiku libbe_test ;
4
5UsePrivateHeaders app interface media shared support ;
6
7local architectureObject ;
8for architectureObject in [ MultiArchSubDirSetup ] {
9	on $(architectureObject) {
10		local architecture = $(TARGET_PACKAGING_ARCH) ;
11
12		MergeObject <libbe!$(architecture)>support_kit.o :
13			Architecture.cpp
14			Archivable.cpp
15			ArchivingManagers.cpp
16			Base64.cpp
17			Beep.cpp
18			BlockCache.cpp
19			BufferedDataIO.cpp
20			BufferIO.cpp
21			ByteOrder.cpp
22			DataIO.cpp
23			DateTime.cpp
24			Flattenable.cpp
25			List.cpp
26			Locker.cpp
27			PointerList.cpp
28			Referenceable.cpp
29			StopWatch.cpp
30			String.cpp
31			StringList.cpp
32			Url.cpp
33			Uuid.cpp
34			;
35
36		StaticLibrary [ MultiArchDefaultGristFiles libreferenceable.a ]
37			: : [ FGristFiles Referenceable.o ] ;
38	}
39}
40