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