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