Makefile.inc revision 293474
1#	@(#)Makefile.inc	8.3 (Berkeley) 10/24/94
2# $FreeBSD: stable/10/lib/libc/sys/Makefile.inc 293474 2016-01-09 14:20:23Z dchagin $
3
4# sys sources
5.PATH: ${.CURDIR}/${LIBC_ARCH}/sys ${.CURDIR}/sys
6
7# Include the generated makefile containing the *complete* list
8# of syscall names in MIASM.
9.include "${.CURDIR}/../../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 "${.CURDIR}/${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	stack_protector.c \
25	stack_protector_compat.c \
26	__error.c \
27	interposing_table.c
28
29.if !defined(WITHOUT_SYSCALL_COMPAT)
30SYSCALL_COMPAT_SRCS= \
31	ftruncate.c \
32	lseek.c \
33	mmap.c \
34	pread.c \
35	pwrite.c \
36	truncate.c
37SRCS+=	${SYSCALL_COMPAT_SRCS}
38NOASM+=	${SYSCALL_COMPAT_SRCS:S/.c/.o/}
39.endif
40
41SRCS+= futimens.c utimensat.c
42NOASM+= futimens.o utimensat.o
43PSEUDO+= _futimens.o _utimensat.o
44
45INTERPOSED = \
46	accept \
47	accept4 \
48	aio_suspend \
49	close \
50	connect \
51	fcntl \
52	fsync \
53	fork \
54	kevent \
55	msync \
56	nanosleep \
57	open \
58	openat \
59	poll \
60	ppoll \
61	pselect \
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+=	${.CURDIR}/sys/Symbol.map
114
115# Generated files
116CLEANFILES+=	${SASM} ${SPSEUDO}
117
118.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" || \
119    ${MACHINE_CPUARCH} == "powerpc"
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	open.2 \
249	pathconf.2 \
250	pdfork.2 \
251	pipe.2 \
252	poll.2 \
253	posix_fadvise.2 \
254	posix_fallocate.2 \
255	posix_openpt.2 \
256	procctl.2 \
257	profil.2 \
258	pselect.2 \
259	ptrace.2 \
260	quotactl.2 \
261	read.2 \
262	readlink.2 \
263	reboot.2 \
264	recv.2 \
265	rename.2 \
266	revoke.2 \
267	rfork.2 \
268	rmdir.2 \
269	rtprio.2
270.if !defined(NO_P1003_1B)
271MAN+=	sched_get_priority_max.2 \
272	sched_setparam.2 \
273	sched_setscheduler.2 \
274	sched_yield.2
275.endif
276MAN+=	sctp_generic_recvmsg.2 \
277	sctp_generic_sendmsg.2 \
278	sctp_peeloff.2 \
279	select.2 \
280	semctl.2 \
281	semget.2 \
282	semop.2 \
283	send.2 \
284	setfib.2 \
285	sendfile.2 \
286	setgroups.2 \
287	setpgid.2 \
288	setregid.2 \
289	setresuid.2 \
290	setreuid.2 \
291	setsid.2 \
292	setuid.2 \
293	shmat.2 \
294	shmctl.2 \
295	shmget.2 \
296	shm_open.2 \
297	shutdown.2 \
298	sigaction.2 \
299	sigaltstack.2 \
300	sigpending.2 \
301	sigprocmask.2 \
302	sigqueue.2 \
303	sigreturn.2 \
304	sigstack.2 \
305	sigsuspend.2 \
306	sigwait.2 \
307	sigwaitinfo.2 \
308	socket.2 \
309	socketpair.2 \
310	stat.2 \
311	statfs.2 \
312	swapon.2 \
313	symlink.2 \
314	sync.2 \
315	sysarch.2 \
316	syscall.2 \
317	timer_create.2 \
318	timer_delete.2 \
319	timer_settime.2 \
320	truncate.2 \
321	umask.2 \
322	undelete.2 \
323	unlink.2 \
324	utimensat.2 \
325	utimes.2 \
326	utrace.2 \
327	uuidgen.2 \
328	vfork.2 \
329	wait.2 \
330	write.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+=getdirentries.2 getdents.2
374MLINKS+=getfh.2 lgetfh.2
375MLINKS+=getgid.2 getegid.2
376MLINKS+=getitimer.2 setitimer.2
377MLINKS+=getlogin.2 getlogin_r.3
378MLINKS+=getlogin.2 setlogin.2
379MLINKS+=getloginclass.2 setloginclass.2
380MLINKS+=getpgrp.2 getpgid.2
381MLINKS+=getpid.2 getppid.2
382MLINKS+=getpriority.2 setpriority.2
383MLINKS+=getrlimit.2 setrlimit.2
384MLINKS+=getsockopt.2 setsockopt.2
385MLINKS+=gettimeofday.2 settimeofday.2
386MLINKS+=getuid.2 geteuid.2
387MLINKS+=intro.2 errno.2
388MLINKS+=jail.2 jail_attach.2 \
389	jail.2 jail_get.2 \
390	jail.2 jail_remove.2 \
391	jail.2 jail_set.2
392MLINKS+=kldunload.2 kldunloadf.2
393MLINKS+=kqueue.2 kevent.2 \
394	kqueue.2 EV_SET.3
395MLINKS+=link.2 linkat.2
396MLINKS+=madvise.2 posix_madvise.2
397MLINKS+=mkdir.2 mkdirat.2
398MLINKS+=mkfifo.2 mkfifoat.2
399MLINKS+=mknod.2 mknodat.2
400MLINKS+=mlock.2 munlock.2
401MLINKS+=mlockall.2 munlockall.2
402MLINKS+=modnext.2 modfnext.2
403MLINKS+=mount.2 nmount.2 \
404	mount.2 unmount.2
405MLINKS+=mq_receive.2 mq_timedreceive.2
406MLINKS+=mq_send.2 mq_timedsend.2
407MLINKS+=ntp_adjtime.2 ntp_gettime.2
408MLINKS+=open.2 openat.2
409MLINKS+=pathconf.2 fpathconf.2
410MLINKS+=pathconf.2 lpathconf.2
411MLINKS+=pdfork.2 pdgetpid.2\
412	pdfork.2 pdkill.2 \
413	pdfork.2 pdwait4.2
414MLINKS+=pipe.2 pipe2.2
415MLINKS+=poll.2 ppoll.2
416MLINKS+=read.2 pread.2 \
417	read.2 preadv.2 \
418	read.2 readv.2
419MLINKS+=readlink.2 readlinkat.2
420MLINKS+=recv.2 recvfrom.2 \
421	recv.2 recvmsg.2
422MLINKS+=rename.2 renameat.2
423MLINKS+=rtprio.2 rtprio_thread.2
424.if !defined(NO_P1003_1B)
425MLINKS+=sched_get_priority_max.2 sched_get_priority_min.2 \
426	sched_get_priority_max.2 sched_rr_get_interval.2
427MLINKS+=sched_setparam.2 sched_getparam.2
428MLINKS+=sched_setscheduler.2 sched_getscheduler.2
429.endif
430MLINKS+=select.2 FD_CLR.3 \
431	select.2 FD_ISSET.3 \
432	select.2 FD_SET.3 \
433	select.2 FD_ZERO.3
434MLINKS+=send.2 sendmsg.2 \
435	send.2 sendto.2
436MLINKS+=setpgid.2 setpgrp.2
437MLINKS+=setresuid.2 getresgid.2 \
438	setresuid.2 getresuid.2 \
439	setresuid.2 setresgid.2
440MLINKS+=setuid.2 setegid.2 \
441	setuid.2 seteuid.2 \
442	setuid.2 setgid.2
443MLINKS+=shmat.2 shmdt.2
444MLINKS+=shm_open.2 shm_unlink.2
445MLINKS+=sigwaitinfo.2 sigtimedwait.2
446MLINKS+=stat.2 fstat.2 \
447	stat.2 fstatat.2 \
448	stat.2 lstat.2
449MLINKS+=statfs.2 fstatfs.2
450MLINKS+=swapon.2 swapoff.2
451MLINKS+=symlink.2 symlinkat.2
452MLINKS+=syscall.2 __syscall.2
453MLINKS+=timer_settime.2 timer_getoverrun.2 \
454	timer_settime.2 timer_gettime.2
455MLINKS+=truncate.2 ftruncate.2
456MLINKS+=unlink.2 unlinkat.2
457MLINKS+=utimensat.2 futimens.2
458MLINKS+=utimes.2 futimes.2 \
459	utimes.2 futimesat.2 \
460	utimes.2 lutimes.2
461MLINKS+=wait.2 wait3.2 \
462	wait.2 wait4.2 \
463	wait.2 waitpid.2 \
464	wait.2 waitid.2 \
465	wait.2 wait6.2
466MLINKS+=write.2 pwrite.2 \
467	write.2 pwritev.2 \
468	write.2 writev.2
469