Oops for the Makefile for the VESA lkm

This commit is contained in:
sos 1998-09-15 20:09:18 +00:00
parent 416afe71b7
commit 8610298fa8
2 changed files with 38 additions and 0 deletions

19
lkm/vesa/Makefile Normal file
View File

@ -0,0 +1,19 @@
# $Id: $
.PATH: ${.CURDIR}/../../../sys/i386/isa
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>

19
sys/modules/vesa/Makefile Normal file
View File

@ -0,0 +1,19 @@
# $Id: $
.PATH: ${.CURDIR}/../../../sys/i386/isa
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>