xref: /haiku/src/system/libroot/posix/unistd/Jamfile (revision fce4895d1884da5ae6fb299d23c735c598e690b1)
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			getlogin.c
26			getpagesize.c
27			hostname.cpp
28			ioctl.c
29			link.c
30			lockf.cpp
31			lseek.c
32			mount.c
33			pause.c
34			pipe.c
35			process.c
36			read.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