Makefile revision 1.3
1# $NetBSD: Makefile,v 1.3 2024/06/16 21:52:01 pgoyette Exp $ 2 3.include <bsd.init.mk> 4 5.PATH: ${S}/compat/common 6 7KMOD= compat_13 8 9CPPFLAGS+= -DCOMPAT_13 -DCOMPAT_14 -DCOMPAT_16 -DCOMPAT_20 -DCOMPAT_30 10CPPFLAGS+= -DCOMPAT_40 -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 11 12SRCS+= compat_13_mod.c 13SRCS+= uvm_13.c kern_sig_13.c 14 15.if ${MACHINE_CPU} == "m68k" 16COMPAT_MACHDEP_SRCS+= compat_13_sigreturn13.s 17.endif 18 19.include "../Makefile.compat" 20.include <bsd.kmodule.mk> 21