xref: /haiku/src/system/runtime_loader/arch/m68k/Jamfile (revision 427edfcf0ddc74fc461c9355484d33fd4b027b70)
1SubDir HAIKU_TOP src system runtime_loader arch m68k ;
2
3local architectureObject ;
4for architectureObject in [ MultiArchSubDirSetup m68k ] {
5	on $(architectureObject) {
6		local architecture = $(TARGET_PACKAGING_ARCH) ;
7
8		UsePrivateHeaders runtime_loader ;
9		UsePrivateSystemHeaders ;
10
11		SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) $(DOTDOT) ] ;
12
13		StaticLibrary <$(architecture)>libruntime_loader_$(TARGET_ARCH).a :
14			arch_relocate.cpp
15			:
16			<src!system!libroot!os!arch!$(TARGET_ARCH)!$(architecture)>atomic.o
17			<src!system!libroot!os!arch!$(TARGET_ARCH)!$(architecture)>thread.o
18
19			<src!system!libroot!posix!string!arch!$(TARGET_ARCH)!$(architecture)>arch_string.o
20			<src!system!libroot!posix!string!arch!$(TARGET_ARCH)!$(architecture)>memset.o
21			;
22	}
23}
24
25