diff options
author | sos <sos@FreeBSD.org> | 1998-09-15 20:09:18 +0000 |
---|---|---|
committer | sos <sos@FreeBSD.org> | 1998-09-15 20:09:18 +0000 |
commit | 8610298fa884f4db1170b5baff6186ef4969717e (patch) | |
tree | ddb5f7ef28c17163022dfffa80f6e89452726ec5 /lkm | |
parent | 416afe71b725a15044f1dd86ce1d535db22205c8 (diff) | |
download | FreeBSD-src-8610298fa884f4db1170b5baff6186ef4969717e.zip FreeBSD-src-8610298fa884f4db1170b5baff6186ef4969717e.tar.gz |
Oops for the Makefile for the VESA lkm
Diffstat (limited to 'lkm')
-rw-r--r-- | lkm/vesa/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lkm/vesa/Makefile b/lkm/vesa/Makefile new file mode 100644 index 0000000..adf66ba --- /dev/null +++ b/lkm/vesa/Makefile @@ -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> |