1 # $NetBSD: Makefile,v 1.2 2019/01/27 02:08:45 pgoyette Exp $ 2 3 .include "../Makefile.inc" 4 5 .PATH: ${S}/compat/common 6 7 KMOD= compat_60 8 9 CPPFLAGS+= -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 10 11 SRCS+= compat_60_mod.c kern_sa_60.c tty_60.c kern_time_60.c ccd_60.c \ 12 kern_cpu_60.c 13 14 .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" 15 CPPFLAGS+= -DCPU_UCODE 16 17 .PATH: ${S}/arch/x86/x86 18 SRCS+= compat_60_cpu_ucode.c 19 .endif 20 21 .include <bsd.kmodule.mk> 22