xref: /freebsd/lib/libc/sys/Makefile.inc (revision cab6a39d7b343596a5823e65c0f7b426551ec22d)
1#	@(#)Makefile.inc	8.3 (Berkeley) 10/24/94
2# $FreeBSD$
3
4# sys sources
5.PATH: ${LIBC_SRCTOP}/${LIBC_ARCH}/sys ${LIBC_SRCTOP}/sys
6
7# Include the generated makefile containing the *complete* list
8# of syscall names in MIASM.
9.include "${SRCTOP}/sys/sys/syscall.mk"
10
11# Include machine dependent definitions.
12#
13# MDASM names override the default syscall names in MIASM.
14# NOASM will prevent the default syscall code from being generated.
15# PSEUDO generates _<sys>() and __sys_<sys>() symbols, but not <sys>().
16#
17# While historically machine dependent, all architectures have the following
18# declarations in common:
19#
20NOASM=	exit.o \
21	getlogin.o \
22	sstk.o \
23	yield.o
24PSEUDO=	_exit.o \
25	_getlogin.o
26.sinclude "${LIBC_SRCTOP}/${LIBC_ARCH}/sys/Makefile.inc"
27
28SRCS+= clock_gettime.c gettimeofday.c __vdso_gettimeofday.c
29NOASM+=  clock_gettime.o gettimeofday.o
30PSEUDO+= _clock_gettime.o _gettimeofday.o
31
32# Sources common to both syscall interfaces:
33SRCS+=	\
34	__error.c \
35	interposing_table.c
36
37SRCS+= getdents.c lstat.c mknod.c stat.c
38
39SRCS+= fstat.c fstatat.c fstatfs.c getfsstat.c statfs.c
40NOASM+= fstat.o fstatat.o fstatfs.o getfsstat.o statfs.o
41PSEUDO+= _fstat.o _fstatat.o _fstatfs.o _getfsstat.o _statfs.o
42
43SRCS+= getdirentries.c
44NOASM+= getdirentries.o
45PSEUDO+= _getdirentries.o
46
47SRCS+= brk.c
48SRCS+= closefrom.c
49SRCS+= pipe.c
50SRCS+= shm_open.c
51SRCS+= vadvise.c
52SRCS+= _Fork.c
53
54SRCS+=	compat-stub.c
55
56INTERPOSED = \
57	accept \
58	accept4 \
59	aio_suspend \
60	clock_nanosleep \
61	close \
62	connect \
63	fcntl \
64	fdatasync \
65	fsync \
66	fork \
67	kevent \
68	msync \
69	nanosleep \
70	open \
71	openat \
72	poll \
73	ppoll \
74	pselect \
75	ptrace \
76	read \
77	readv \
78	recvfrom \
79	recvmsg \
80	select \
81	sendmsg \
82	sendto \
83	setcontext \
84	sigaction \
85	sigprocmask \
86	sigsuspend \
87	sigtimedwait \
88	sigwait \
89	sigwaitinfo \
90	swapcontext \
91	wait4 \
92	wait6 \
93	write \
94	writev
95
96SRCS+=	${INTERPOSED:S/$/.c/}
97NOASM+=	${INTERPOSED:S/$/.o/}
98PSEUDO+=	${INTERPOSED:C/^.*$/_&.o/}
99
100# Add machine dependent asm sources:
101SRCS+=${MDASM}
102
103# Look though the complete list of syscalls (MIASM) for names that are
104# not defined with machine dependent implementations (MDASM) and are
105# not declared for no generation of default code (NOASM).  Add each
106# syscall that satisfies these conditions to the ASM list.
107.for _asm in ${MIASM}
108.if (${MDASM:R:M${_asm:R}} == "")
109.if (${NOASM:R:M${_asm:R}} == "")
110ASM+=$(_asm)
111.endif
112.endif
113.endfor
114
115SASM=	${ASM:S/.o/.S/}
116
117SPSEUDO= ${PSEUDO:S/.o/.S/}
118
119SRCS+=	${SASM} ${SPSEUDO}
120
121SYM_MAPS+=	${LIBC_SRCTOP}/sys/Symbol.map
122
123# Generated files
124CLEANFILES+=	${SASM} ${SPSEUDO}
125
126.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" || \
127    ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_ARCH:Marmv[67]*}
128NOTE_GNU_STACK='\t.section .note.GNU-stack,"",%%progbits\n'
129.else
130NOTE_GNU_STACK=''
131.endif
132
133${SASM}:
134	printf '/* %sgenerated by libc/sys/Makefile.inc */\n' @ > ${.TARGET}
135	printf '#include "compat.h"\n' >> ${.TARGET}
136	printf '#include "SYS.h"\nRSYSCALL(${.PREFIX})\n' >> ${.TARGET}
137	printf  ${NOTE_GNU_STACK} >>${.TARGET}
138
139${SPSEUDO}:
140	printf '/* %sgenerated by libc/sys/Makefile.inc */\n' @ > ${.TARGET}
141	printf '#include "compat.h"\n' >> ${.TARGET}
142	printf '#include "SYS.h"\nPSEUDO(${.PREFIX:S/_//})\n' \
143	    >> ${.TARGET}
144	printf ${NOTE_GNU_STACK} >>${.TARGET}
145
146MAN+=	abort2.2 \
147	accept.2 \
148	access.2 \
149	acct.2 \
150	adjtime.2 \
151	aio_cancel.2 \
152	aio_error.2 \
153	aio_fsync.2 \
154	aio_mlock.2 \
155	aio_read.2 \
156	aio_return.2 \
157	aio_suspend.2 \
158	aio_waitcomplete.2 \
159	aio_write.2 \
160	bind.2 \
161	bindat.2 \
162	brk.2 \
163	cap_enter.2 \
164	cap_fcntls_limit.2 \
165	cap_ioctls_limit.2 \
166	cap_rights_limit.2 \
167	chdir.2 \
168	chflags.2 \
169	chmod.2 \
170	chown.2 \
171	chroot.2 \
172	clock_gettime.2 \
173	close.2 \
174	closefrom.2 \
175	connect.2 \
176	connectat.2 \
177	copy_file_range.2 \
178	cpuset.2 \
179	cpuset_getaffinity.2 \
180	cpuset_getdomain.2 \
181	dup.2 \
182	eventfd.2 \
183	execve.2 \
184	_exit.2 \
185	extattr_get_file.2 \
186	fcntl.2 \
187	ffclock.2 \
188	fhlink.2 \
189	fhopen.2 \
190	fhreadlink.2 \
191	flock.2 \
192	fork.2 \
193	fspacectl.2 \
194	fsync.2 \
195	getdirentries.2 \
196	getdtablesize.2 \
197	getfh.2 \
198	getfsstat.2 \
199	getgid.2 \
200	getgroups.2 \
201	getitimer.2 \
202	getlogin.2 \
203	getloginclass.2 \
204	getpeername.2 \
205	getpgrp.2 \
206	getpid.2 \
207	getpriority.2 \
208	getrandom.2 \
209	getrlimit.2 \
210	getrusage.2 \
211	getsid.2 \
212	getsockname.2 \
213	getsockopt.2 \
214	gettimeofday.2 \
215	getuid.2 \
216	intro.2 \
217	ioctl.2 \
218	issetugid.2 \
219	jail.2 \
220	kenv.2 \
221	kill.2 \
222	kldfind.2 \
223	kldfirstmod.2 \
224	kldload.2 \
225	kldnext.2 \
226	kldstat.2 \
227	kldsym.2 \
228	kldunload.2 \
229	kqueue.2 \
230	ktrace.2 \
231	link.2 \
232	lio_listio.2 \
233	listen.2 \
234	lseek.2 \
235	madvise.2 \
236	mincore.2 \
237	minherit.2 \
238	mkdir.2 \
239	mkfifo.2 \
240	mknod.2 \
241	mlock.2 \
242	mlockall.2 \
243	mmap.2 \
244	modfind.2 \
245	modnext.2 \
246	modstat.2 \
247	mount.2 \
248	mprotect.2 \
249	mq_close.2 \
250	mq_getattr.2 \
251	mq_notify.2 \
252	mq_open.2 \
253	mq_receive.2 \
254	mq_send.2 \
255	mq_setattr.2 \
256	mq_unlink.2 \
257	msgctl.2 \
258	msgget.2 \
259	msgrcv.2 \
260	msgsnd.2 \
261	msync.2 \
262	munmap.2 \
263	nanosleep.2 \
264	nfssvc.2 \
265	ntp_adjtime.2 \
266	open.2 \
267	pathconf.2 \
268	pdfork.2 \
269	pipe.2 \
270	poll.2 \
271	posix_fadvise.2 \
272	posix_fallocate.2 \
273	posix_openpt.2 \
274	procctl.2 \
275	profil.2 \
276	pselect.2 \
277	ptrace.2 \
278	quotactl.2 \
279	rctl_add_rule.2 \
280	read.2 \
281	readlink.2 \
282	reboot.2 \
283	recv.2 \
284	rename.2 \
285	revoke.2 \
286	rfork.2 \
287	rmdir.2 \
288	rtprio.2
289.if !defined(NO_P1003_1B)
290MAN+=	sched_get_priority_max.2 \
291	sched_setparam.2 \
292	sched_setscheduler.2 \
293	sched_yield.2
294.endif
295MAN+=	sctp_generic_recvmsg.2 \
296	sctp_generic_sendmsg.2 \
297	sctp_peeloff.2 \
298	select.2 \
299	semctl.2 \
300	semget.2 \
301	semop.2 \
302	send.2 \
303	setfib.2 \
304	sendfile.2 \
305	setgroups.2 \
306	setpgid.2 \
307	setregid.2 \
308	setresuid.2 \
309	setreuid.2 \
310	setsid.2 \
311	setuid.2 \
312	shmat.2 \
313	shmctl.2 \
314	shmget.2 \
315	shm_open.2 \
316	shutdown.2 \
317	sigaction.2 \
318	sigaltstack.2 \
319	sigfastblock.2 \
320	sigpending.2 \
321	sigprocmask.2 \
322	sigqueue.2 \
323	sigreturn.2 \
324	sigstack.2 \
325	sigsuspend.2 \
326	sigwait.2 \
327	sigwaitinfo.2 \
328	socket.2 \
329	socketpair.2 \
330	stat.2 \
331	statfs.2 \
332	swapon.2 \
333	symlink.2 \
334	sync.2 \
335	sysarch.2 \
336	syscall.2 \
337	thr_exit.2 \
338	thr_kill.2 \
339	thr_new.2 \
340	thr_self.2 \
341	thr_set_name.2 \
342	thr_suspend.2 \
343	thr_wake.2 \
344	timer_create.2 \
345	timer_delete.2 \
346	timer_settime.2 \
347	truncate.2 \
348	umask.2 \
349	undelete.2 \
350	unlink.2 \
351	utimensat.2 \
352	utimes.2 \
353	utrace.2 \
354	uuidgen.2 \
355	vfork.2 \
356	wait.2 \
357	write.2 \
358	_umtx_op.2
359
360MLINKS+=aio_read.2 aio_readv.2
361MLINKS+=aio_write.2 aio_writev.2
362MLINKS+=accept.2 accept4.2
363MLINKS+=access.2 eaccess.2 \
364	access.2 faccessat.2
365MLINKS+=brk.2 sbrk.2
366MLINKS+=cap_enter.2 cap_getmode.2
367MLINKS+=cap_fcntls_limit.2 cap_fcntls_get.2
368MLINKS+=cap_ioctls_limit.2 cap_ioctls_get.2
369MLINKS+=chdir.2 fchdir.2
370MLINKS+=chflags.2 chflagsat.2 \
371	chflags.2 fchflags.2 \
372	chflags.2 lchflags.2
373MLINKS+=chmod.2 fchmod.2 \
374	chmod.2 fchmodat.2 \
375	chmod.2 lchmod.2
376MLINKS+=chown.2 fchown.2 \
377	chown.2 fchownat.2 \
378	chown.2 lchown.2
379MLINKS+=clock_gettime.2 clock_getres.2 \
380	clock_gettime.2 clock_settime.2
381MLINKS+=closefrom.2 close_range.2
382MLINKS+=nanosleep.2 clock_nanosleep.2
383MLINKS+=cpuset.2 cpuset_getid.2 \
384	cpuset.2 cpuset_setid.2
385MLINKS+=cpuset_getaffinity.2 cpuset_setaffinity.2
386MLINKS+=cpuset_getdomain.2 cpuset_setdomain.2
387MLINKS+=dup.2 dup2.2
388MLINKS+=eventfd.2 eventfd_read.3 \
389	eventfd.2 eventfd_write.3
390MLINKS+=execve.2 fexecve.2
391MLINKS+=extattr_get_file.2 extattr.2 \
392	extattr_get_file.2 extattr_delete_fd.2 \
393	extattr_get_file.2 extattr_delete_file.2 \
394	extattr_get_file.2 extattr_delete_link.2 \
395	extattr_get_file.2 extattr_get_fd.2 \
396	extattr_get_file.2 extattr_get_link.2 \
397	extattr_get_file.2 extattr_list_fd.2 \
398	extattr_get_file.2 extattr_list_file.2 \
399	extattr_get_file.2 extattr_list_link.2 \
400	extattr_get_file.2 extattr_set_fd.2 \
401	extattr_get_file.2 extattr_set_file.2 \
402	extattr_get_file.2 extattr_set_link.2
403MLINKS+=ffclock.2 ffclock_getcounter.2 \
404	ffclock.2 ffclock_getestimate.2 \
405	ffclock.2 ffclock_setestimate.2
406MLINKS+=fhlink.2 fhlinkat.2
407MLINKS+=fhopen.2 fhstat.2 fhopen.2 fhstatfs.2
408MLINKS+=fsync.2 fdatasync.2
409MLINKS+=getdirentries.2 getdents.2
410MLINKS+=getfh.2 lgetfh.2 \
411	getfh.2 getfhat.2
412MLINKS+=getgid.2 getegid.2
413MLINKS+=getitimer.2 setitimer.2
414MLINKS+=getlogin.2 getlogin_r.3
415MLINKS+=getlogin.2 setlogin.2
416MLINKS+=getloginclass.2 setloginclass.2
417MLINKS+=getpgrp.2 getpgid.2
418MLINKS+=getpid.2 getppid.2
419MLINKS+=getpriority.2 setpriority.2
420MLINKS+=getrlimit.2 setrlimit.2
421MLINKS+=getsockopt.2 setsockopt.2
422MLINKS+=gettimeofday.2 settimeofday.2
423MLINKS+=getuid.2 geteuid.2
424MLINKS+=intro.2 errno.2
425MLINKS+=jail.2 jail_attach.2 \
426	jail.2 jail_get.2 \
427	jail.2 jail_remove.2 \
428	jail.2 jail_set.2
429MLINKS+=kldunload.2 kldunloadf.2
430MLINKS+=kqueue.2 kevent.2 \
431	kqueue.2 EV_SET.3
432MLINKS+=link.2 linkat.2
433MLINKS+=madvise.2 posix_madvise.2
434MLINKS+=mkdir.2 mkdirat.2
435MLINKS+=mkfifo.2 mkfifoat.2
436MLINKS+=mknod.2 mknodat.2
437MLINKS+=mlock.2 munlock.2
438MLINKS+=mlockall.2 munlockall.2
439MLINKS+=modnext.2 modfnext.2
440MLINKS+=mount.2 nmount.2 \
441	mount.2 unmount.2
442MLINKS+=mq_receive.2 mq_timedreceive.2
443MLINKS+=mq_send.2 mq_timedsend.2
444MLINKS+=ntp_adjtime.2 ntp_gettime.2
445MLINKS+=open.2 openat.2
446MLINKS+=pathconf.2 fpathconf.2
447MLINKS+=pathconf.2 lpathconf.2
448MLINKS+=pdfork.2 pdgetpid.2\
449	pdfork.2 pdkill.2
450MLINKS+=pipe.2 pipe2.2
451MLINKS+=poll.2 ppoll.2
452MLINKS+=rctl_add_rule.2 rctl_get_limits.2 \
453	rctl_add_rule.2 rctl_get_racct.2 \
454	rctl_add_rule.2 rctl_get_rules.2 \
455	rctl_add_rule.2 rctl_remove_rule.2
456MLINKS+=read.2 pread.2 \
457	read.2 preadv.2 \
458	read.2 readv.2
459MLINKS+=readlink.2 readlinkat.2
460MLINKS+=recv.2 recvfrom.2 \
461	recv.2 recvmsg.2
462MLINKS+=rename.2 renameat.2
463MLINKS+=rtprio.2 rtprio_thread.2
464.if !defined(NO_P1003_1B)
465MLINKS+=sched_get_priority_max.2 sched_get_priority_min.2 \
466	sched_get_priority_max.2 sched_rr_get_interval.2
467MLINKS+=sched_setparam.2 sched_getparam.2
468MLINKS+=sched_setscheduler.2 sched_getscheduler.2
469.endif
470MLINKS+=select.2 FD_CLR.3 \
471	select.2 FD_ISSET.3 \
472	select.2 FD_SET.3 \
473	select.2 FD_ZERO.3
474MLINKS+=send.2 sendmsg.2 \
475	send.2 sendto.2
476MLINKS+=setpgid.2 setpgrp.2
477MLINKS+=setresuid.2 getresgid.2 \
478	setresuid.2 getresuid.2 \
479	setresuid.2 setresgid.2
480MLINKS+=setuid.2 setegid.2 \
481	setuid.2 seteuid.2 \
482	setuid.2 setgid.2
483MLINKS+=shmat.2 shmdt.2
484MLINKS+=shm_open.2 memfd_create.3 \
485	shm_open.2 shm_unlink.2 \
486	shm_open.2 shm_rename.2
487MLINKS+=sigwaitinfo.2 sigtimedwait.2
488MLINKS+=stat.2 fstat.2 \
489	stat.2 fstatat.2 \
490	stat.2 lstat.2
491MLINKS+=statfs.2 fstatfs.2
492MLINKS+=swapon.2 swapoff.2
493MLINKS+=symlink.2 symlinkat.2
494MLINKS+=syscall.2 __syscall.2
495MLINKS+=timer_settime.2 timer_getoverrun.2 \
496	timer_settime.2 timer_gettime.2
497MLINKS+=thr_kill.2 thr_kill2.2
498MLINKS+=truncate.2 ftruncate.2
499MLINKS+=unlink.2 unlinkat.2
500MLINKS+=unlink.2 funlinkat.2
501MLINKS+=utimensat.2 futimens.2
502MLINKS+=utimes.2 futimes.2 \
503	utimes.2 futimesat.2 \
504	utimes.2 lutimes.2
505MLINKS+=wait.2 wait3.2 \
506	wait.2 wait4.2 \
507	wait.2 waitpid.2 \
508	wait.2 waitid.2 \
509	wait.2 wait6.2
510MLINKS+=write.2 pwrite.2 \
511	write.2 pwritev.2 \
512	write.2 writev.2
513