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