xref: /haiku/src/system/libroot/posix/stdio/Jamfile (revision fc7456e9b1ec38c941134ed6d01c438cf289381e)
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