freebsd-dev/sys/modules/vesa/Makefile
Kazutaka YOKOTA 2ad872c579 The first stage of console driver reorganization: activate new
keyboard and video card drivers.

Because of the changes, you are required to update your kernel
configuration file now!

The files in sys/dev/syscons are still i386-specific (but less so than
before), and won't compile for alpha and PC98 yet.

syscons still directly accesses the video card registers here and
there; this will be rectified in the later stages.
1999-01-11 03:18:56 +00:00

33 lines
608 B
Makefile

# $Id: Makefile,v 1.4 1998/12/30 11:21:07 yokota Exp $
.PATH: ${.CURDIR}/../../dev/syscons ${.CURDIR}/../../i386/isa
KMOD = vesa
SRCS = vesa.c scvesactl.c sc.h vga.h opt_syscons.h opt_vga.h \
opt_vesa.h opt_vm86.h opt_fb.h
NOMAN =
CLEANFILES += sc.h vga.h opt_syscons.h opt_vga.h opt_vesa.h opt_vm86.h \
opt_fb.h
sc.h:
echo "#define NSC 1" > sc.h
vga.h:
echo "#define NVGA 1" > vga.h
opt_syscons.h:
touch opt_syscons.h
opt_vga.h:
touch opt_vga.h
opt_vesa.h:
echo "#define VESA 1" > opt_vesa.h
opt_vm86.h:
echo "#define VM86 1" > opt_vm86.h
opt_fb.h:
touch opt_fb.h
.include <bsd.kmod.mk>