opnsense-src/sys/modules/vesa/Makefile

20 lines
390 B
Makefile
Raw Normal View History

# $Id: Makefile,v 1.1 1998/09/15 20:09:18 sos Exp $
1998-09-15 16:09:18 -04:00
.PATH: ${.CURDIR}/../../sys/i386/isa
1998-09-15 16:09:18 -04:00
KMOD = vesa_mod
SRCS = vesa.c scvesactl.c sc.h opt_vesa.h opt_vm86.h
NOMAN =
CFLAGS += -DVESA_MODULE
CLEANFILES += sc.h opt_vesa.h opt_vm86.h
sc.h:
echo "#define NSC 1" > sc.h
opt_vesa.h:
echo "#define VESA 1" > opt_vesa.h
opt_vm86.h:
echo "#define VM86 1" > opt_vm86.h
.include <bsd.kmod.mk>