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.cpp
26			getpagesize.c
27			hostname.cpp
28			ioctl.c
29			link.c
30			lockf.cpp
31			lseek.c
32			mount.c
33			nice.c
34			pause.c
35			pipe.c
36			process.c
37			read.c
38			sleep.c
39			sync.c
40			system.cpp
41			terminal.c
42			truncate.c
43			ttyname.c
44			ualarm.c
45			usergroup.cpp
46			usleep.c
47			write.c
48			;
49	}
50}
51