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/mlxen/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: releng/10.3/sys/modules/mlxen/Makefile 292107 2015-12-11 14:21:58Z hselasky $
    2 .PATH:  ${.CURDIR}/../../ofed/drivers/net/mlx4
    3 
    4 .include <bsd.own.mk>
    5 
    6 KMOD    = mlxen
    7 SRCS    = device_if.h bus_if.h pci_if.h vnode_if.h
    8 SRCS    += en_cq.c en_main.c en_netdev.c en_port.c en_resources.c
    9 SRCS    += en_rx.c en_tx.c utils.c
   10 SRCS    += opt_inet.h opt_inet6.h
   11 CFLAGS+= -I${.CURDIR}/../../ofed/drivers/net/mlx4
   12 CFLAGS+= -I${.CURDIR}/../../ofed/include/
   13 CFLAGS+= -fms-extensions
   14 
   15 .if !defined(KERNBUILDDIR)
   16 .if ${MK_INET_SUPPORT} != "no"
   17 opt_inet.h:
   18         @echo "#define INET 1" > ${.TARGET}
   19 .endif
   20 
   21 .if ${MK_INET6_SUPPORT} != "no"
   22 opt_inet6.h:
   23         @echo "#define INET6 1" > ${.TARGET}
   24 .endif
   25 .endif
   26 
   27 .include <bsd.kmod.mk>
   28 
   29 CFLAGS+= ${GCC_MS_EXTENSIONS}

Cache object: f3c46461c9333cce50f7987380501ce6


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