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