diff options
| author | Kazutaka YOKOTA <yokota@FreeBSD.org> | 1999-01-11 03:18:56 +0000 |
|---|---|---|
| committer | Kazutaka YOKOTA <yokota@FreeBSD.org> | 1999-01-11 03:18:56 +0000 |
| commit | 2ad872c5794e4c26fdf6ed219ad3f09ca0d5304a (patch) | |
| tree | fe7f55d0accae6cc85be75e22e50850f48ae0f5d /sys/modules/vesa | |
| parent | 559e7c1b0cbbe4a5a4683c3052c72ae4684176fd (diff) | |
Notes
Diffstat (limited to 'sys/modules/vesa')
| -rw-r--r-- | sys/modules/vesa/Makefile | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/sys/modules/vesa/Makefile b/sys/modules/vesa/Makefile index a44334c22ddc..6de1c879120c 100644 --- a/sys/modules/vesa/Makefile +++ b/sys/modules/vesa/Makefile @@ -1,18 +1,32 @@ -# $Id: Makefile,v 1.3 1998/10/16 04:30:51 peter Exp $ +# $Id: Makefile,v 1.4 1998/12/30 11:21:07 yokota Exp $ -.PATH: ${.CURDIR}/../../i386/isa +.PATH: ${.CURDIR}/../../dev/syscons ${.CURDIR}/../../i386/isa KMOD = vesa -SRCS = vesa.c scvesactl.c sc.h opt_vesa.h opt_vm86.h +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 opt_vesa.h opt_vm86.h +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> |
