sshlockout - Also lockout on max authentication attempts
[dragonfly.git] / sys / platform / pc64 / acpica / Makefile
blob395793e51ab9101d73d1dbf6b99b703a0e107255
1 # $FreeBSD: src/sys/i386/acpica/Makefile,v 1.6 2004/04/13 13:43:11 des Exp $
4 # Correct path for kernel builds
5 # Don't rely on the kernel's .depend file
6 .ifdef MAKESRCPATH
7 .PATH: ${MAKESRCPATH}
8 DEPENDFILE=
9 .else
10 MAKESRCPATH= ${.CURDIR}
11 CLEANFILES= acpi_wakecode.h acpi_wakecode.bin acpi_wakecode.o
12 .endif
13 CFLAGS+= -I. -I@
15 all: acpi_wakecode.h
17 acpi_wakecode.o: acpi_wakecode.S
19 acpi_wakecode.bin: acpi_wakecode.o
20 objcopy -S -O binary acpi_wakecode.o acpi_wakecode.bin
22 acpi_wakecode.h: acpi_wakecode.bin acpi_wakecode.o
23 sh ${MAKESRCPATH}/genwakecode.sh > acpi_wakecode.h
25 .include <bsd.prog.mk>