Home | History | Annotate | Line # | Download | only in sys
Makefile.inc revision 1.111.2.7
      1 #	$NetBSD: Makefile.inc,v 1.111.2.7 2002/01/29 19:51:26 nathanw Exp $
      2 #	@(#)Makefile.inc	8.3 (Berkeley) 10/24/94
      3 
      4 # Generation and compilation of syscall stubs have moved to
      5 # libsyscall. Conversion and compatibility interfaces are here.
      6 
      7 # sys sources
      8 .PATH: ${.CURDIR}/sys
      9 
     10 # glue to provide compatibility between GCC 1.X and 2.X and for compat
     11 # with old syscall interfaces.
     12 SRCS+=	adjtime.c clock_settime.c ftruncate.c getdirentries.c lseek.c mmap.c \
     13 	msync.c ntp_adjtime.c pread.c preadv.c pwrite.c pwritev.c semctl.c \
     14 	settimeofday.c sigaltstack.c stat.c swapon.c truncate.c
     15 
     16 # glue to syscalls that may pass structs or unions, which cannot be
     17 # handled portably and easily by the syscall interface. The glue
     18 # converts structs and unions to pointers to them.
     19 SRCS+=	__semctl13.c
     20