freebsd-dev/sys/modules/vesa/Makefile
Bruce Evans 6f940b3847 Removed special rules for building and cleaning device interface files
and empty options files.  The rules are now generated automatically in
bsd.kmod.mk.  Cleaned up related things ($S and ${CLEANFILES}).
1999-11-28 18:53:47 +00:00

20 lines
352 B
Makefile

# $FreeBSD$
.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_fb.h
NOMAN =
CLEANFILES = sc.h vga.h
sc.h:
echo "#define NSC 1" > sc.h
vga.h:
echo "#define NVGA 1" > vga.h
opt_vesa.h:
echo "#define VESA 1" > opt_vesa.h
.include <bsd.kmod.mk>