]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - lib/libc/sys/Makefile.inc
MFC r316602:
[FreeBSD/stable/10.git] / lib / libc / sys / Makefile.inc
1 #       @(#)Makefile.inc        8.3 (Berkeley) 10/24/94
2 # $FreeBSD$
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
18 SRCS+= clock_gettime.c gettimeofday.c __vdso_gettimeofday.c
19 NOASM+=  clock_gettime.o gettimeofday.o
20 PSEUDO+= _clock_gettime.o _gettimeofday.o
21
22 # Sources common to both syscall interfaces:
23 SRCS+=  \
24         stack_protector.c \
25         stack_protector_compat.c \
26         __error.c \
27         interposing_table.c
28
29 .if !defined(WITHOUT_SYSCALL_COMPAT)
30 SYSCALL_COMPAT_SRCS= \
31         ftruncate.c \
32         lseek.c \
33         mmap.c \
34         pread.c \
35         pwrite.c \
36         truncate.c
37 SRCS+=  ${SYSCALL_COMPAT_SRCS}
38 NOASM+= ${SYSCALL_COMPAT_SRCS:S/.c/.o/}
39 .endif
40
41 SRCS+= futimens.c utimensat.c
42 NOASM+= futimens.o utimensat.o
43 PSEUDO+= _futimens.o _utimensat.o
44
45 INTERPOSED = \
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         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"
83 SRCS+=  sigaction.c
84 NOASM+= sigaction.o
85 .else
86 INTERPOSED+= sigaction
87 .endif
88
89 SRCS+=  ${INTERPOSED:S/$/.c/}
90 NOASM+= ${INTERPOSED:S/$/.o/}
91 PSEUDO+=        ${INTERPOSED:C/^.*$/_&.o/}
92
93 # Add machine dependent asm sources:
94 SRCS+=${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}} == "")
103 ASM+=$(_asm)
104 .endif
105 .endif
106 .endfor
107
108 SASM=   ${ASM:S/.o/.S/}
109
110 SPSEUDO= ${PSEUDO:S/.o/.S/}
111
112 SRCS+=  ${SASM} ${SPSEUDO}
113
114 SYM_MAPS+=      ${.CURDIR}/sys/Symbol.map
115
116 # Generated files
117 CLEANFILES+=    ${SASM} ${SPSEUDO}
118
119 .if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" || \
120     ${MACHINE_CPUARCH} == "powerpc"
121 NOTE_GNU_STACK='\t.section .note.GNU-stack,"",%%progbits\n'
122 .else
123 NOTE_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
137 MAN+=   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         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)
273 MAN+=   sched_get_priority_max.2 \
274         sched_setparam.2 \
275         sched_setscheduler.2 \
276         sched_yield.2
277 .endif
278 MAN+=   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_suspend.2 \
320         thr_wake.2 \
321         timer_create.2 \
322         timer_delete.2 \
323         timer_settime.2 \
324         truncate.2 \
325         umask.2 \
326         undelete.2 \
327         unlink.2 \
328         utimensat.2 \
329         utimes.2 \
330         utrace.2 \
331         uuidgen.2 \
332         vfork.2 \
333         wait.2 \
334         write.2
335
336 MLINKS+=accept.2 accept4.2
337 MLINKS+=access.2 eaccess.2 \
338         access.2 faccessat.2
339 MLINKS+=brk.2 sbrk.2
340 MLINKS+=cap_enter.2 cap_getmode.2
341 MLINKS+=cap_fcntls_limit.2 cap_fcntls_get.2
342 MLINKS+=cap_ioctls_limit.2 cap_ioctls_get.2
343 MLINKS+=chdir.2 fchdir.2
344 MLINKS+=chflags.2 chflagsat.2 \
345         chflags.2 fchflags.2 \
346         chflags.2 lchflags.2
347 MLINKS+=chmod.2 fchmod.2 \
348         chmod.2 fchmodat.2 \
349         chmod.2 lchmod.2
350 MLINKS+=chown.2 fchown.2 \
351         chown.2 fchownat.2 \
352         chown.2 lchown.2
353 MLINKS+=clock_gettime.2 clock_getres.2 \
354         clock_gettime.2 clock_settime.2
355 MLINKS+=cpuset.2 cpuset_getid.2 \
356         cpuset.2 cpuset_setid.2
357 MLINKS+=cpuset_getaffinity.2 cpuset_setaffinity.2
358 MLINKS+=dup.2 dup2.2
359 MLINKS+=execve.2 fexecve.2
360 MLINKS+=extattr_get_file.2 extattr.2 \
361         extattr_get_file.2 extattr_delete_fd.2 \
362         extattr_get_file.2 extattr_delete_file.2 \
363         extattr_get_file.2 extattr_delete_link.2 \
364         extattr_get_file.2 extattr_get_fd.2 \
365         extattr_get_file.2 extattr_get_link.2 \
366         extattr_get_file.2 extattr_list_fd.2 \
367         extattr_get_file.2 extattr_list_file.2 \
368         extattr_get_file.2 extattr_list_link.2 \
369         extattr_get_file.2 extattr_set_fd.2 \
370         extattr_get_file.2 extattr_set_file.2 \
371         extattr_get_file.2 extattr_set_link.2
372 MLINKS+=ffclock.2 ffclock_getcounter.2 \
373         ffclock.2 ffclock_getestimate.2 \
374         ffclock.2 ffclock_setestimate.2
375 MLINKS+=fhopen.2 fhstat.2 fhopen.2 fhstatfs.2
376 MLINKS+=getdirentries.2 getdents.2
377 MLINKS+=getfh.2 lgetfh.2
378 MLINKS+=getgid.2 getegid.2
379 MLINKS+=getitimer.2 setitimer.2
380 MLINKS+=getlogin.2 getlogin_r.3
381 MLINKS+=getlogin.2 setlogin.2
382 MLINKS+=getloginclass.2 setloginclass.2
383 MLINKS+=getpgrp.2 getpgid.2
384 MLINKS+=getpid.2 getppid.2
385 MLINKS+=getpriority.2 setpriority.2
386 MLINKS+=getrlimit.2 setrlimit.2
387 MLINKS+=getsockopt.2 setsockopt.2
388 MLINKS+=gettimeofday.2 settimeofday.2
389 MLINKS+=getuid.2 geteuid.2
390 MLINKS+=intro.2 errno.2
391 MLINKS+=jail.2 jail_attach.2 \
392         jail.2 jail_get.2 \
393         jail.2 jail_remove.2 \
394         jail.2 jail_set.2
395 MLINKS+=kldunload.2 kldunloadf.2
396 MLINKS+=kqueue.2 kevent.2 \
397         kqueue.2 EV_SET.3
398 MLINKS+=link.2 linkat.2
399 MLINKS+=madvise.2 posix_madvise.2
400 MLINKS+=mkdir.2 mkdirat.2
401 MLINKS+=mkfifo.2 mkfifoat.2
402 MLINKS+=mknod.2 mknodat.2
403 MLINKS+=mlock.2 munlock.2
404 MLINKS+=mlockall.2 munlockall.2
405 MLINKS+=modnext.2 modfnext.2
406 MLINKS+=mount.2 nmount.2 \
407         mount.2 unmount.2
408 MLINKS+=mq_receive.2 mq_timedreceive.2
409 MLINKS+=mq_send.2 mq_timedsend.2
410 MLINKS+=ntp_adjtime.2 ntp_gettime.2
411 MLINKS+=open.2 openat.2
412 MLINKS+=pathconf.2 fpathconf.2
413 MLINKS+=pathconf.2 lpathconf.2
414 MLINKS+=pdfork.2 pdgetpid.2\
415         pdfork.2 pdkill.2 \
416         pdfork.2 pdwait4.2
417 MLINKS+=pipe.2 pipe2.2
418 MLINKS+=poll.2 ppoll.2
419 MLINKS+=rctl_add_rule.2 rctl_get_limits.2 \
420         rctl_add_rule.2 rctl_get_racct.2 \
421         rctl_add_rule.2 rctl_get_rules.2 \
422         rctl_add_rule.2 rctl_remove_rule.2
423 MLINKS+=read.2 pread.2 \
424         read.2 preadv.2 \
425         read.2 readv.2
426 MLINKS+=readlink.2 readlinkat.2
427 MLINKS+=recv.2 recvfrom.2 \
428         recv.2 recvmsg.2
429 MLINKS+=rename.2 renameat.2
430 MLINKS+=rtprio.2 rtprio_thread.2
431 .if !defined(NO_P1003_1B)
432 MLINKS+=sched_get_priority_max.2 sched_get_priority_min.2 \
433         sched_get_priority_max.2 sched_rr_get_interval.2
434 MLINKS+=sched_setparam.2 sched_getparam.2
435 MLINKS+=sched_setscheduler.2 sched_getscheduler.2
436 .endif
437 MLINKS+=select.2 FD_CLR.3 \
438         select.2 FD_ISSET.3 \
439         select.2 FD_SET.3 \
440         select.2 FD_ZERO.3
441 MLINKS+=send.2 sendmsg.2 \
442         send.2 sendto.2
443 MLINKS+=setpgid.2 setpgrp.2
444 MLINKS+=setresuid.2 getresgid.2 \
445         setresuid.2 getresuid.2 \
446         setresuid.2 setresgid.2
447 MLINKS+=setuid.2 setegid.2 \
448         setuid.2 seteuid.2 \
449         setuid.2 setgid.2
450 MLINKS+=shmat.2 shmdt.2
451 MLINKS+=shm_open.2 shm_unlink.2
452 MLINKS+=sigwaitinfo.2 sigtimedwait.2
453 MLINKS+=stat.2 fstat.2 \
454         stat.2 fstatat.2 \
455         stat.2 lstat.2
456 MLINKS+=statfs.2 fstatfs.2
457 MLINKS+=swapon.2 swapoff.2
458 MLINKS+=symlink.2 symlinkat.2
459 MLINKS+=syscall.2 __syscall.2
460 MLINKS+=timer_settime.2 timer_getoverrun.2 \
461         timer_settime.2 timer_gettime.2
462 MLINKS+=truncate.2 ftruncate.2
463 MLINKS+=unlink.2 unlinkat.2
464 MLINKS+=utimensat.2 futimens.2
465 MLINKS+=utimes.2 futimes.2 \
466         utimes.2 futimesat.2 \
467         utimes.2 lutimes.2
468 MLINKS+=wait.2 wait3.2 \
469         wait.2 wait4.2 \
470         wait.2 waitpid.2 \
471         wait.2 waitid.2 \
472         wait.2 wait6.2
473 MLINKS+=write.2 pwrite.2 \
474         write.2 pwritev.2 \
475         write.2 writev.2