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