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/atapi/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}/../../i386/isa
    4 KMOD            = atapi
    5 SRCS            = atapi.c wdc.h opt_atapi.h #wcd.h 
    6 NOMAN           =
    7 CFLAGS         += -DATAPI_MODULE
    8 CLEANFILES     += wdc.h wcd.h opt_atapi.h
    9 EXPORT_SYMS     = _atapi_mod _atapi_debug_ptr _atapi_intr_ptr \
   10                   _atapi_request_callback_ptr _atapi_request_immediate_ptr \
   11                   _atapi_request_wait_ptr _atapi_start_ptr
   12 
   13 load:           ${PROG}
   14                 ${MODLOAD} -u -e atapi_mod $(PROG)
   15 
   16 unload:         ${PROG}
   17                 ${MODUNLOAD} -n atapi
   18 
   19 wdc.h:
   20                 echo "#define NWDC 2" > wdc.h
   21 
   22 #               echo "#define NWD 4" >> wdc.h
   23 
   24 wcd.h:
   25                 echo "#define NWCD 1" > wcd.h
   26 
   27 opt_atapi.h:
   28                 echo "#define ATAPI 1"> opt_atapi.h
   29 
   30 .include <bsd.kmod.mk>

Cache object: 87503db24c666ea192dc891cde3d62be


[ 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.