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