diff options
author | Søren Schmidt <sos@FreeBSD.org> | 1998-09-15 20:09:18 +0000 |
---|---|---|
committer | Søren Schmidt <sos@FreeBSD.org> | 1998-09-15 20:09:18 +0000 |
commit | c3fa0a68ff42c60ddecdf5fb39da017a308a0493 (patch) | |
tree | 6d2253dd2a40aae8240da677bdd4c2031f70013e /sys/modules | |
parent | 8afdc82db64357af15f30c14aaf6643947c5bdd4 (diff) | |
download | src-c3fa0a68ff42c60ddecdf5fb39da017a308a0493.tar.gz src-c3fa0a68ff42c60ddecdf5fb39da017a308a0493.zip |
Oops for the Makefile for the VESA lkm
Notes
Notes:
svn path=/head/; revision=39302
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/vesa/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sys/modules/vesa/Makefile b/sys/modules/vesa/Makefile new file mode 100644 index 000000000000..adf66ba04807 --- /dev/null +++ b/sys/modules/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> |