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