The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/modules/vesa/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # $FreeBSD$
    2 
    3 .PATH:  ${.CURDIR}/../../dev/syscons ${.CURDIR}/../../i386/isa
    4 KMOD    =       vesa
    5 SRCS    =       vesa.c scvesactl.c sc.h vga.h opt_syscons.h opt_vga.h \
    6                 opt_vesa.h opt_vm86.h opt_fb.h
    7 NOMAN   =
    8 CLEANFILES +=   sc.h vga.h opt_syscons.h opt_vga.h opt_vesa.h opt_vm86.h \
    9                 opt_fb.h
   10 
   11 sc.h:
   12         echo "#define NSC 1" > sc.h
   13 
   14 vga.h:
   15         echo "#define NVGA 1" > vga.h
   16 
   17 opt_syscons.h:
   18         touch opt_syscons.h
   19 
   20 opt_vga.h:
   21         touch opt_vga.h
   22 
   23 opt_vesa.h:
   24         echo "#define VESA 1" > opt_vesa.h
   25 
   26 opt_vm86.h:
   27         echo "#define VM86 1" > opt_vm86.h
   28 
   29 opt_fb.h:
   30         touch opt_fb.h
   31 
   32 .include <bsd.kmod.mk>

Cache object: e941054527b02e24a51835e0a53f1231


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.