mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-10 14:02:43 +00:00
a654d07295
converted yet. These are more of a starting point. This is NOT connected to the parent Makefile. OK'ed by jkh (who is ever so patiently waiting)
20 lines
382 B
Makefile
20 lines
382 B
Makefile
# $Id: Makefile,v 1.2 1998/09/15 20:14:11 sos Exp $
|
|
|
|
.PATH: ${.CURDIR}/../../i386/isa
|
|
KMOD = vesa
|
|
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>
|