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 | |
| parent | 8afdc82db64357af15f30c14aaf6643947c5bdd4 (diff) | |
Notes
| -rw-r--r-- | lkm/vesa/Makefile | 19 | ||||
| -rw-r--r-- | sys/modules/vesa/Makefile | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/lkm/vesa/Makefile b/lkm/vesa/Makefile new file mode 100644 index 000000000000..adf66ba04807 --- /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> 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> |
