xref: /haiku/src/system/libroot/posix/unistd/Jamfile (revision 7d6915b4d08ffe728cd38af02843d5e98ddfe0db)
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			chown.c
16			chroot.cpp
17			close.c
18			conf.cpp
19			directory.c
20			dup.c
21			exec.cpp
22			_exit.c
23			fork.c
24			getlogin.c
25			getpagesize.c
26			hostname.cpp
27			ioctl.c
28			link.c
29			lockf.cpp
30			lseek.c
31			mount.c
32			pause.c
33			pipe.c
34			process.c
35			read.c
36			sbrk.c
37			sleep.c
38			sync.c
39			system.cpp
40			terminal.c
41			truncate.c
42			ttyname.c
43			ualarm.c
44			usergroup.cpp
45			usleep.c
46			write.c
47			;
48	}
49}
50