Home | History | Annotate | Line # | Download | only in compat_16
      1 #	$NetBSD: Makefile,v 1.4 2024/06/17 23:23:15 mrg Exp $
      2 
      3 .include <bsd.init.mk>
      4 
      5 .PATH:	${S}/compat/common
      6 
      7 KMOD=	compat_16
      8 
      9 CPPFLAGS+=	-DCOMPAT_16 -DCOMPAT_20 -DCOMPAT_30
     10 CPPFLAGS+=	-DCOMPAT_40 -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80
     11 
     12 SRCS+=	compat_16_mod.c
     13 SRCS+=	kern_sig_16.c
     14 
     15 COMPAT_MACHDEP_SRCS=	compat_16_machdep.c
     16 .if ${MACHINE_CPU} == "m68k"
     17 .include "../Makefile.assym"
     18 
     19 COMPAT_MACHDEP_SRCS+=	compat_16_sigreturn14.s
     20 COPTS.compat_16_sigreturn14.s+=	-I. -x assembler-with-cpp
     21 .endif
     22 .if ${MACHINE_CPU} == "powerpc"
     23 COMPAT_MACHDEP_SRCS+=	sigcode.S
     24 .endif
     25 
     26 .include "../Makefile.compat"
     27 
     28 .include <bsd.kmodule.mk>
     29