xref: /haiku/src/system/libroot/posix/stdio/Jamfile (revision 9a6a20d4689307142a7ed26a1437ba47e244e73f)
1SubDir HAIKU_TOP src system libroot posix stdio ;
2
3UsePrivateHeaders libroot shared ;
4
5local architectureObject ;
6for architectureObject in [ MultiArchSubDirSetup ] {
7	on $(architectureObject) {
8		local architecture = $(TARGET_PACKAGING_ARCH) ;
9
10		UsePrivateSystemHeaders ;
11
12		MergeObject <$(architecture)>posix_stdio.o :
13			__freading.cpp
14			_fseek.c
15			remove.c
16			rename.c
17			;
18	}
19}
20