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