Home | History | Annotate | Line # | Download | only in compat_netbsd32
Makefile revision 1.4.4.1
      1  1.4.4.1  rmind #	$NetBSD: Makefile,v 1.4.4.1 2011/03/05 20:55:39 rmind Exp $
      2      1.1     ad 
      3      1.1     ad .include "../Makefile.inc"
      4      1.1     ad .include "../Makefile.assym"
      5      1.1     ad 
      6      1.1     ad KMOD=	compat_netbsd32
      7      1.1     ad 
      8      1.2  njoly CPPFLAGS+=	-DSYSVSHM -DSYSVSEM -DSYSVMSG -DCOMPAT_NETBSD32
      9      1.1     ad CPPFLAGS+=	-DEXEC_ELF32 -DEXEC_ELF64 -DEXEC_AOUT
     10  1.4.4.1  rmind CPPFLAGS+=	-DP1003_1B_SEMAPHORE -DCOREDUMP -DKERN_SA
     11      1.1     ad 
     12      1.1     ad .PATH:	${S}/compat/netbsd32
     13      1.1     ad SRCS+=	netbsd32_compat_09.c netbsd32_compat_10.c
     14      1.1     ad SRCS+=	netbsd32_compat_12.c netbsd32_compat_13.c
     15      1.1     ad SRCS+=	netbsd32_compat_14.c netbsd32_compat_20.c
     16      1.1     ad SRCS+=	netbsd32_compat_30.c netbsd32_compat_43.c
     17      1.4  njoly SRCS+=	netbsd32_compat_50.c
     18      1.1     ad SRCS+=	netbsd32_core.c netbsd32_event.c
     19      1.1     ad SRCS+=	netbsd32_exec_aout.c netbsd32_exec_elf32.c
     20      1.1     ad SRCS+=	netbsd32_execve.c netbsd32_fs.c
     21      1.1     ad SRCS+=	netbsd32_ioctl.c netbsd32_ipc.c
     22      1.1     ad SRCS+=	netbsd32_lwp.c netbsd32_netbsd.c
     23      1.1     ad SRCS+=	netbsd32_sa.c netbsd32_select.c
     24      1.1     ad SRCS+=	netbsd32_sem.c netbsd32_signal.c
     25      1.1     ad SRCS+=	netbsd32_socket.c netbsd32_syscalls.c
     26      1.1     ad SRCS+=	netbsd32_sysctl.c netbsd32_sysent.c
     27      1.1     ad SRCS+=	netbsd32_time.c netbsd32_wait.c
     28      1.1     ad SRCS+=	netbsd32_mod.c
     29      1.1     ad 
     30      1.3    abs .if ${MACHINE_ARCH} == "x86_64"
     31      1.1     ad .PATH:	${S}/arch/amd64/amd64
     32      1.1     ad SRCS+=	netbsd32_machdep.c netbsd32_sigcode.S netbsd32_syscall.c
     33      1.1     ad .endif
     34      1.1     ad 
     35      1.3    abs .if ${MACHINE_ARCH} == "sparc64"
     36      1.1     ad .PATH:	${S}/arch/sparc64/sparc64
     37      1.1     ad SRCS+=	netbsd32_machdep.c netbsd32_sigcode.S
     38      1.1     ad .endif
     39      1.1     ad 
     40      1.1     ad .include <bsd.kmodule.mk>
     41