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