xref: /haiku/src/system/libroot/posix/sys/Jamfile (revision 86036b7aeaec9cdc06a7ae6221e78c8cc2d9982f)
1SubDir HAIKU_TOP src system libroot posix sys ;
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_sys.o :
13			chmod.c
14			flock.c
15			ftime.c
16			ftok.c
17			getrusage.c
18			gettimeofday.c
19			itimer.cpp
20			mkdir.c
21			mkfifo.c
22			mknod.c
23			mman.cpp
24			priority.c
25			rlimit.c
26			select.cpp
27			stat.c
28			statvfs.c
29			times.cpp
30			uio.c
31			umask.c
32			uname.c
33			utimes.c
34			wait.cpp
35			xsi_msg_queue.cpp
36			xsi_sem.cpp
37			;
38	}
39}
40