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