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