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 "${LIBC_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# 20NOASM= break.o \ 21 exit.o \ 22 getlogin.o \ 23 sstk.o \ 24 yield.o 25PSEUDO= _exit.o \ 26 _getlogin.o 27.sinclude "${LIBC_SRCTOP}/${LIBC_ARCH}/sys/Makefile.inc" 28 29SRCS+= clock_gettime.c gettimeofday.c __vdso_gettimeofday.c 30NOASM+= clock_gettime.o gettimeofday.o 31PSEUDO+= _clock_gettime.o _gettimeofday.o 32 33# Sources common to both syscall interfaces: 34SRCS+= \ 35 __error.c \ 36 interposing_table.c 37 38SRCS+= futimens.c utimensat.c 39NOASM+= futimens.o utimensat.o 40PSEUDO+= _futimens.o _utimensat.o 41 42SRCS+= pipe.c 43 44INTERPOSED = \ 45 accept \ 46 accept4 \ 47 aio_suspend \ 48 close \ 49 connect \ 50 fcntl \ 51 fdatasync \ 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" 83SRCS+= sigaction.c 84NOASM+= sigaction.o 85.else 86INTERPOSED+= sigaction 87.endif 88 89SRCS+= ${INTERPOSED:S/$/.c/} 90NOASM+= ${INTERPOSED:S/$/.o/} 91PSEUDO+= ${INTERPOSED:C/^.*$/_&.o/} 92 93# Add machine dependent asm sources: 94SRCS+=${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}} == "") 103ASM+=$(_asm) 104.endif 105.endif 106.endfor 107 108SASM= ${ASM:S/.o/.S/} 109 110SPSEUDO= ${PSEUDO:S/.o/.S/} 111 112SRCS+= ${SASM} ${SPSEUDO} 113 114SYM_MAPS+= ${LIBC_SRCTOP}/sys/Symbol.map 115 116# Generated files 117CLEANFILES+= ${SASM} ${SPSEUDO} 118 119.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" || \ 120 ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_ARCH:Marmv6*} 121NOTE_GNU_STACK='\t.section .note.GNU-stack,"",%%progbits\n' 122.else 123NOTE_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 137MAN+= 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 numa_getaffinity.2 \ 250 open.2 \ 251 pathconf.2 \ 252 pdfork.2 \ 253 pipe.2 \ 254 poll.2 \ 255 posix_fadvise.2 \ 256 posix_fallocate.2 \ 257 posix_openpt.2 \ 258 procctl.2 \ 259 profil.2 \ 260 pselect.2 \ 261 ptrace.2 \ 262 quotactl.2 \ 263 rctl_add_rule.2 \ 264 read.2 \ 265 readlink.2 \ 266 reboot.2 \ 267 recv.2 \ 268 rename.2 \ 269 revoke.2 \ 270 rfork.2 \ 271 rmdir.2 \ 272 rtprio.2 273.if !defined(NO_P1003_1B) 274MAN+= sched_get_priority_max.2 \ 275 sched_setparam.2 \ 276 sched_setscheduler.2 \ 277 sched_yield.2 278.endif 279MAN+= sctp_generic_recvmsg.2 \ 280 sctp_generic_sendmsg.2 \ 281 sctp_peeloff.2 \ 282 select.2 \ 283 semctl.2 \ 284 semget.2 \ 285 semop.2 \ 286 send.2 \ 287 setfib.2 \ 288 sendfile.2 \ 289 setgroups.2 \ 290 setpgid.2 \ 291 setregid.2 \ 292 setresuid.2 \ 293 setreuid.2 \ 294 setsid.2 \ 295 setuid.2 \ 296 shmat.2 \ 297 shmctl.2 \ 298 shmget.2 \ 299 shm_open.2 \ 300 shutdown.2 \ 301 sigaction.2 \ 302 sigaltstack.2 \ 303 sigpending.2 \ 304 sigprocmask.2 \ 305 sigqueue.2 \ 306 sigreturn.2 \ 307 sigstack.2 \ 308 sigsuspend.2 \ 309 sigwait.2 \ 310 sigwaitinfo.2 \ 311 socket.2 \ 312 socketpair.2 \ 313 stat.2 \ 314 statfs.2 \ 315 swapon.2 \ 316 symlink.2 \ 317 sync.2 \ 318 sysarch.2 \ 319 syscall.2 \ 320 thr_exit.2 \ 321 thr_kill.2 \ 322 thr_new.2 \ 323 thr_self.2 \ 324 thr_set_name.2 \ 325 timer_create.2 \ 326 timer_delete.2 \ 327 timer_settime.2 \ 328 truncate.2 \ 329 umask.2 \ 330 undelete.2 \ 331 unlink.2 \ 332 utimensat.2 \ 333 utimes.2 \ 334 utrace.2 \ 335 uuidgen.2 \ 336 vfork.2 \ 337 wait.2 \ 338 write.2 \ 339 _umtx_op.2 340 341MLINKS+=accept.2 accept4.2 342MLINKS+=access.2 eaccess.2 \ 343 access.2 faccessat.2 344MLINKS+=brk.2 sbrk.2 345MLINKS+=cap_enter.2 cap_getmode.2 346MLINKS+=cap_fcntls_limit.2 cap_fcntls_get.2 347MLINKS+=cap_ioctls_limit.2 cap_ioctls_get.2 348MLINKS+=cap_rights_limit.2 cap_rights_get.2 349MLINKS+=chdir.2 fchdir.2 350MLINKS+=chflags.2 chflagsat.2 \ 351 chflags.2 fchflags.2 \ 352 chflags.2 lchflags.2 353MLINKS+=chmod.2 fchmod.2 \ 354 chmod.2 fchmodat.2 \ 355 chmod.2 lchmod.2 356MLINKS+=chown.2 fchown.2 \ 357 chown.2 fchownat.2 \ 358 chown.2 lchown.2 359MLINKS+=clock_gettime.2 clock_getres.2 \ 360 clock_gettime.2 clock_settime.2 361MLINKS+=cpuset.2 cpuset_getid.2 \ 362 cpuset.2 cpuset_setid.2 363MLINKS+=cpuset_getaffinity.2 cpuset_setaffinity.2 364MLINKS+=dup.2 dup2.2 365MLINKS+=execve.2 fexecve.2 366MLINKS+=extattr_get_file.2 extattr.2 \ 367 extattr_get_file.2 extattr_delete_fd.2 \ 368 extattr_get_file.2 extattr_delete_file.2 \ 369 extattr_get_file.2 extattr_delete_link.2 \ 370 extattr_get_file.2 extattr_get_fd.2 \ 371 extattr_get_file.2 extattr_get_link.2 \ 372 extattr_get_file.2 extattr_list_fd.2 \ 373 extattr_get_file.2 extattr_list_file.2 \ 374 extattr_get_file.2 extattr_list_link.2 \ 375 extattr_get_file.2 extattr_set_fd.2 \ 376 extattr_get_file.2 extattr_set_file.2 \ 377 extattr_get_file.2 extattr_set_link.2 378MLINKS+=ffclock.2 ffclock_getcounter.2 \ 379 ffclock.2 ffclock_getestimate.2 \ 380 ffclock.2 ffclock_setestimate.2 381MLINKS+=fhopen.2 fhstat.2 fhopen.2 fhstatfs.2 382MLINKS+=fsync.2 fdatasync.2 383MLINKS+=getdirentries.2 getdents.2 384MLINKS+=getfh.2 lgetfh.2 385MLINKS+=getgid.2 getegid.2 386MLINKS+=getitimer.2 setitimer.2 387MLINKS+=getlogin.2 getlogin_r.3 388MLINKS+=getlogin.2 setlogin.2 389MLINKS+=getloginclass.2 setloginclass.2 390MLINKS+=getpgrp.2 getpgid.2 391MLINKS+=getpid.2 getppid.2 392MLINKS+=getpriority.2 setpriority.2 393MLINKS+=getrlimit.2 setrlimit.2 394MLINKS+=getsockopt.2 setsockopt.2 395MLINKS+=gettimeofday.2 settimeofday.2 396MLINKS+=getuid.2 geteuid.2 397MLINKS+=intro.2 errno.2 398MLINKS+=jail.2 jail_attach.2 \ 399 jail.2 jail_get.2 \ 400 jail.2 jail_remove.2 \ 401 jail.2 jail_set.2 402MLINKS+=kldunload.2 kldunloadf.2 403MLINKS+=kqueue.2 kevent.2 \ 404 kqueue.2 EV_SET.3 405MLINKS+=link.2 linkat.2 406MLINKS+=madvise.2 posix_madvise.2 407MLINKS+=mkdir.2 mkdirat.2 408MLINKS+=mkfifo.2 mkfifoat.2 409MLINKS+=mknod.2 mknodat.2 410MLINKS+=mlock.2 munlock.2 411MLINKS+=mlockall.2 munlockall.2 412MLINKS+=modnext.2 modfnext.2 413MLINKS+=mount.2 nmount.2 \ 414 mount.2 unmount.2 415MLINKS+=mq_receive.2 mq_timedreceive.2 416MLINKS+=mq_send.2 mq_timedsend.2 417MLINKS+=ntp_adjtime.2 ntp_gettime.2 418MLINKS+=numa_getaffinity.2 numa_setaffinity.2 419MLINKS+=open.2 openat.2 420MLINKS+=pathconf.2 fpathconf.2 421MLINKS+=pathconf.2 lpathconf.2 422MLINKS+=pdfork.2 pdgetpid.2\ 423 pdfork.2 pdkill.2 \ 424 pdfork.2 pdwait4.2 425MLINKS+=pipe.2 pipe2.2 426MLINKS+=poll.2 ppoll.2 427MLINKS+=rctl_add_rule.2 rctl_get_limits.2 \ 428 rctl_add_rule.2 rctl_get_racct.2 \ 429 rctl_add_rule.2 rctl_get_rules.2 \ 430 rctl_add_rule.2 rctl_remove_rule.2 431MLINKS+=read.2 pread.2 \ 432 read.2 preadv.2 \ 433 read.2 readv.2 434MLINKS+=readlink.2 readlinkat.2 435MLINKS+=recv.2 recvfrom.2 \ 436 recv.2 recvmsg.2 437MLINKS+=rename.2 renameat.2 438MLINKS+=rtprio.2 rtprio_thread.2 439.if !defined(NO_P1003_1B) 440MLINKS+=sched_get_priority_max.2 sched_get_priority_min.2 \ 441 sched_get_priority_max.2 sched_rr_get_interval.2 442MLINKS+=sched_setparam.2 sched_getparam.2 443MLINKS+=sched_setscheduler.2 sched_getscheduler.2 444.endif 445MLINKS+=select.2 FD_CLR.3 \ 446 select.2 FD_ISSET.3 \ 447 select.2 FD_SET.3 \ 448 select.2 FD_ZERO.3 449MLINKS+=send.2 sendmsg.2 \ 450 send.2 sendto.2 451MLINKS+=setpgid.2 setpgrp.2 452MLINKS+=setresuid.2 getresgid.2 \ 453 setresuid.2 getresuid.2 \ 454 setresuid.2 setresgid.2 455MLINKS+=setuid.2 setegid.2 \ 456 setuid.2 seteuid.2 \ 457 setuid.2 setgid.2 458MLINKS+=shmat.2 shmdt.2 459MLINKS+=shm_open.2 shm_unlink.2 460MLINKS+=sigwaitinfo.2 sigtimedwait.2 461MLINKS+=stat.2 fstat.2 \ 462 stat.2 fstatat.2 \ 463 stat.2 lstat.2 464MLINKS+=statfs.2 fstatfs.2 465MLINKS+=swapon.2 swapoff.2 466MLINKS+=symlink.2 symlinkat.2 467MLINKS+=syscall.2 __syscall.2 468MLINKS+=timer_settime.2 timer_getoverrun.2 \ 469 timer_settime.2 timer_gettime.2 470MLINKS+=thr_kill.2 thr_kill2.2 471MLINKS+=truncate.2 ftruncate.2 472MLINKS+=unlink.2 unlinkat.2 473MLINKS+=utimensat.2 futimens.2 474MLINKS+=utimes.2 futimes.2 \ 475 utimes.2 futimesat.2 \ 476 utimes.2 lutimes.2 477MLINKS+=wait.2 wait3.2 \ 478 wait.2 wait4.2 \ 479 wait.2 waitpid.2 \ 480 wait.2 waitid.2 \ 481 wait.2 wait6.2 482MLINKS+=write.2 pwrite.2 \ 483 write.2 pwritev.2 \ 484 write.2 writev.2 485