xref: /freebsd/lib/libc/sys/Makefile.inc (revision 42249ef2)
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+= vadvise.c
50
51SRCS+=	compat-stub.c
52
53INTERPOSED = \
54	accept \
55	accept4 \
56	aio_suspend \
57	clock_nanosleep \
58	close \
59	connect \
60	fcntl \
61	fdatasync \
62	fsync \
63	fork \
64	kevent \
65	msync \
66	nanosleep \
67	open \
68	openat \
69	poll \
70	ppoll \
71	pselect \
72	ptrace \
73	read \
74	readv \
75	recvfrom \
76	recvmsg \
77	select \
78	sendmsg \
79	sendto \
80	setcontext \
81	sigprocmask \
82	sigsuspend \
83	sigtimedwait \
84	sigwait \
85	sigwaitinfo \
86	swapcontext \
87	wait4 \
88	wait6 \
89	write \
90	writev
91
92.if ${MACHINE_CPUARCH} == "sparc64"
93SRCS+=	sigaction.c
94NOASM+=	sigaction.o
95.else
96INTERPOSED+= sigaction
97.endif
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	execve.2 \
186	_exit.2 \
187	extattr_get_file.2 \
188	fcntl.2 \
189	ffclock.2 \
190	fhlink.2 \
191	fhopen.2 \
192	fhreadlink.2 \
193	flock.2 \
194	fork.2 \
195	fsync.2 \
196	getdirentries.2 \
197	getdtablesize.2 \
198	getfh.2 \
199	getfsstat.2 \
200	getgid.2 \
201	getgroups.2 \
202	getitimer.2 \
203	getlogin.2 \
204	getloginclass.2 \
205	getpeername.2 \
206	getpgrp.2 \
207	getpid.2 \
208	getpriority.2 \
209	getrandom.2 \
210	getrlimit.2 \
211	getrusage.2 \
212	getsid.2 \
213	getsockname.2 \
214	getsockopt.2 \
215	gettimeofday.2 \
216	getuid.2 \
217	intro.2 \
218	ioctl.2 \
219	issetugid.2 \
220	jail.2 \
221	kenv.2 \
222	kill.2 \
223	kldfind.2 \
224	kldfirstmod.2 \
225	kldload.2 \
226	kldnext.2 \
227	kldstat.2 \
228	kldsym.2 \
229	kldunload.2 \
230	kqueue.2 \
231	ktrace.2 \
232	link.2 \
233	lio_listio.2 \
234	listen.2 \
235	lseek.2 \
236	madvise.2 \
237	mincore.2 \
238	minherit.2 \
239	mkdir.2 \
240	mkfifo.2 \
241	mknod.2 \
242	mlock.2 \
243	mlockall.2 \
244	mmap.2 \
245	modfind.2 \
246	modnext.2 \
247	modstat.2 \
248	mount.2 \
249	mprotect.2 \
250	mq_close.2 \
251	mq_getattr.2 \
252	mq_notify.2 \
253	mq_open.2 \
254	mq_receive.2 \
255	mq_send.2 \
256	mq_setattr.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	sigpending.2 \
320	sigprocmask.2 \
321	sigqueue.2 \
322	sigreturn.2 \
323	sigstack.2 \
324	sigsuspend.2 \
325	sigwait.2 \
326	sigwaitinfo.2 \
327	socket.2 \
328	socketpair.2 \
329	stat.2 \
330	statfs.2 \
331	swapon.2 \
332	symlink.2 \
333	sync.2 \
334	sysarch.2 \
335	syscall.2 \
336	thr_exit.2 \
337	thr_kill.2 \
338	thr_new.2 \
339	thr_self.2 \
340	thr_set_name.2 \
341	thr_suspend.2 \
342	thr_wake.2 \
343	timer_create.2 \
344	timer_delete.2 \
345	timer_settime.2 \
346	truncate.2 \
347	umask.2 \
348	undelete.2 \
349	unlink.2 \
350	utimensat.2 \
351	utimes.2 \
352	utrace.2 \
353	uuidgen.2 \
354	vfork.2 \
355	wait.2 \
356	write.2 \
357	_umtx_op.2
358
359MLINKS+=accept.2 accept4.2
360MLINKS+=access.2 eaccess.2 \
361	access.2 faccessat.2
362MLINKS+=brk.2 sbrk.2
363MLINKS+=cap_enter.2 cap_getmode.2
364MLINKS+=cap_fcntls_limit.2 cap_fcntls_get.2
365MLINKS+=cap_ioctls_limit.2 cap_ioctls_get.2
366MLINKS+=chdir.2 fchdir.2
367MLINKS+=chflags.2 chflagsat.2 \
368	chflags.2 fchflags.2 \
369	chflags.2 lchflags.2
370MLINKS+=chmod.2 fchmod.2 \
371	chmod.2 fchmodat.2 \
372	chmod.2 lchmod.2
373MLINKS+=chown.2 fchown.2 \
374	chown.2 fchownat.2 \
375	chown.2 lchown.2
376MLINKS+=clock_gettime.2 clock_getres.2 \
377	clock_gettime.2 clock_settime.2
378MLINKS+=nanosleep.2 clock_nanosleep.2
379MLINKS+=cpuset.2 cpuset_getid.2 \
380	cpuset.2 cpuset_setid.2
381MLINKS+=cpuset_getaffinity.2 cpuset_setaffinity.2
382MLINKS+=cpuset_getdomain.2 cpuset_setdomain.2
383MLINKS+=dup.2 dup2.2
384MLINKS+=execve.2 fexecve.2
385MLINKS+=extattr_get_file.2 extattr.2 \
386	extattr_get_file.2 extattr_delete_fd.2 \
387	extattr_get_file.2 extattr_delete_file.2 \
388	extattr_get_file.2 extattr_delete_link.2 \
389	extattr_get_file.2 extattr_get_fd.2 \
390	extattr_get_file.2 extattr_get_link.2 \
391	extattr_get_file.2 extattr_list_fd.2 \
392	extattr_get_file.2 extattr_list_file.2 \
393	extattr_get_file.2 extattr_list_link.2 \
394	extattr_get_file.2 extattr_set_fd.2 \
395	extattr_get_file.2 extattr_set_file.2 \
396	extattr_get_file.2 extattr_set_link.2
397MLINKS+=ffclock.2 ffclock_getcounter.2 \
398	ffclock.2 ffclock_getestimate.2 \
399	ffclock.2 ffclock_setestimate.2
400MLINKS+=fhlink.2 fhlinkat.2
401MLINKS+=fhopen.2 fhstat.2 fhopen.2 fhstatfs.2
402MLINKS+=fsync.2 fdatasync.2
403MLINKS+=getdirentries.2 getdents.2
404MLINKS+=getfh.2 lgetfh.2 \
405	getfh.2 getfhat.2
406MLINKS+=getgid.2 getegid.2
407MLINKS+=getitimer.2 setitimer.2
408MLINKS+=getlogin.2 getlogin_r.3
409MLINKS+=getlogin.2 setlogin.2
410MLINKS+=getloginclass.2 setloginclass.2
411MLINKS+=getpgrp.2 getpgid.2
412MLINKS+=getpid.2 getppid.2
413MLINKS+=getpriority.2 setpriority.2
414MLINKS+=getrlimit.2 setrlimit.2
415MLINKS+=getsockopt.2 setsockopt.2
416MLINKS+=gettimeofday.2 settimeofday.2
417MLINKS+=getuid.2 geteuid.2
418MLINKS+=intro.2 errno.2
419MLINKS+=jail.2 jail_attach.2 \
420	jail.2 jail_get.2 \
421	jail.2 jail_remove.2 \
422	jail.2 jail_set.2
423MLINKS+=kldunload.2 kldunloadf.2
424MLINKS+=kqueue.2 kevent.2 \
425	kqueue.2 EV_SET.3
426MLINKS+=link.2 linkat.2
427MLINKS+=madvise.2 posix_madvise.2
428MLINKS+=mkdir.2 mkdirat.2
429MLINKS+=mkfifo.2 mkfifoat.2
430MLINKS+=mknod.2 mknodat.2
431MLINKS+=mlock.2 munlock.2
432MLINKS+=mlockall.2 munlockall.2
433MLINKS+=modnext.2 modfnext.2
434MLINKS+=mount.2 nmount.2 \
435	mount.2 unmount.2
436MLINKS+=mq_receive.2 mq_timedreceive.2
437MLINKS+=mq_send.2 mq_timedsend.2
438MLINKS+=ntp_adjtime.2 ntp_gettime.2
439MLINKS+=open.2 openat.2
440MLINKS+=pathconf.2 fpathconf.2
441MLINKS+=pathconf.2 lpathconf.2
442MLINKS+=pdfork.2 pdgetpid.2\
443	pdfork.2 pdkill.2
444MLINKS+=pipe.2 pipe2.2
445MLINKS+=poll.2 ppoll.2
446MLINKS+=rctl_add_rule.2 rctl_get_limits.2 \
447	rctl_add_rule.2 rctl_get_racct.2 \
448	rctl_add_rule.2 rctl_get_rules.2 \
449	rctl_add_rule.2 rctl_remove_rule.2
450MLINKS+=read.2 pread.2 \
451	read.2 preadv.2 \
452	read.2 readv.2
453MLINKS+=readlink.2 readlinkat.2
454MLINKS+=recv.2 recvfrom.2 \
455	recv.2 recvmsg.2
456MLINKS+=rename.2 renameat.2
457MLINKS+=rtprio.2 rtprio_thread.2
458.if !defined(NO_P1003_1B)
459MLINKS+=sched_get_priority_max.2 sched_get_priority_min.2 \
460	sched_get_priority_max.2 sched_rr_get_interval.2
461MLINKS+=sched_setparam.2 sched_getparam.2
462MLINKS+=sched_setscheduler.2 sched_getscheduler.2
463.endif
464MLINKS+=select.2 FD_CLR.3 \
465	select.2 FD_ISSET.3 \
466	select.2 FD_SET.3 \
467	select.2 FD_ZERO.3
468MLINKS+=send.2 sendmsg.2 \
469	send.2 sendto.2
470MLINKS+=setpgid.2 setpgrp.2
471MLINKS+=setresuid.2 getresgid.2 \
472	setresuid.2 getresuid.2 \
473	setresuid.2 setresgid.2
474MLINKS+=setuid.2 setegid.2 \
475	setuid.2 seteuid.2 \
476	setuid.2 setgid.2
477MLINKS+=shmat.2 shmdt.2
478MLINKS+=shm_open.2 shm_unlink.2
479MLINKS+=sigwaitinfo.2 sigtimedwait.2
480MLINKS+=stat.2 fstat.2 \
481	stat.2 fstatat.2 \
482	stat.2 lstat.2
483MLINKS+=statfs.2 fstatfs.2
484MLINKS+=swapon.2 swapoff.2
485MLINKS+=symlink.2 symlinkat.2
486MLINKS+=syscall.2 __syscall.2
487MLINKS+=timer_settime.2 timer_getoverrun.2 \
488	timer_settime.2 timer_gettime.2
489MLINKS+=thr_kill.2 thr_kill2.2
490MLINKS+=truncate.2 ftruncate.2
491MLINKS+=unlink.2 unlinkat.2
492MLINKS+=unlink.2 funlinkat.2
493MLINKS+=utimensat.2 futimens.2
494MLINKS+=utimes.2 futimes.2 \
495	utimes.2 futimesat.2 \
496	utimes.2 lutimes.2
497MLINKS+=wait.2 wait3.2 \
498	wait.2 wait4.2 \
499	wait.2 waitpid.2 \
500	wait.2 waitid.2 \
501	wait.2 wait6.2
502MLINKS+=write.2 pwrite.2 \
503	write.2 pwritev.2 \
504	write.2 writev.2
505