kqueue: Knote should not be accessed once the KN_PROCESSING is cleared
[dragonfly.git] / sys / boot / Makefile
blob80e995bbc1d04d34cf58f7643115d4a4a8709e54
1 # $FreeBSD: src/sys/boot/Makefile,v 1.18 2003/08/16 02:48:20 obrien Exp $
3 .if ${MACHINE_ARCH} == "x86_64"
4 .MAKEFLAGS: MACHINE_ARCH=i386 MACHINE_PLATFORM=pc32 REALLY_X86_64=true
5 .else
6 .MAKEFLAGS: REALLY_X86_64=false
7 .endif
9 # Build DLoader
10 SUBDIR+= dloader
12 # Pick the machine-dependant subdir based on the target architecture.
13 .if ${REALLY_X86_64} == "true"
14 SUBDIR+= pc32
15 .else
16 SUBDIR+= ${MACHINE_PLATFORM}
17 .endif
19 .include <bsd.subdir.mk>