xref: /haiku/src/system/libroot/posix/unistd/Jamfile (revision 909af08f4328301fbdef1ffb41f566c3b5bec0c7)
1SubDir HAIKU_TOP src system libroot posix unistd ;
2
3UsePrivateHeaders libroot runtime_loader 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_unistd.o :
13			access.c
14			alarm.c
15			brk.c
16			chown.c
17			chroot.cpp
18			close.c
19			conf.cpp
20			directory.c
21			dup.c
22			exec.cpp
23			_exit.c
24			fork.c
25			getentropy.c
26			getlogin.cpp
27			getpagesize.c
28			hostname.cpp
29			ioctl.c
30			link.c
31			lockf.cpp
32			lseek.c
33			mount.c
34			nice.c
35			pause.c
36			pipe.c
37			process.c
38			read.c
39			sleep.c
40			sync.c
41			system.cpp
42			terminal.c
43			truncate.c
44			ttyname.c
45			ualarm.c
46			usergroup.cpp
47			usleep.c
48			write.c
49			;
50	}
51}
52