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/ctau/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 # Cronyx Id: Makefile,v 1.1.2.2 2003/01/13 08:28:48 rik Exp $
    2 # $FreeBSD$
    3 
    4 .PATH:  ${.CURDIR}/../../dev/ctau
    5 KMOD=   if_ct
    6 SRCS=   if_ct.c ctddk.c ctau.c ctau.h opt_netgraph.h opt_ng_cronyx.h bpf.h \
    7         sppp.h device_if.h bus_if.h isa_if.h
    8 NOMAN=
    9 
   10 NBPF?=          0
   11 NCTAU?=         3
   12 PROTOS?=        -DINET
   13 NG_CRONYX?=     0
   14 NETGRAPH=       ${NG_CRONYX}
   15 
   16 CFLAGS+= ${PROTOS}
   17 CLEANFILES+= opt_ng_cronyx.h opt_netgraph.h ctau.h bpf.h sppp.h
   18 
   19 ctau.h:
   20         echo "#define NCTAU ${NCTAU}" > ctau.h
   21 
   22 opt_netgraph.h:
   23         echo "#define NETGRAPH $(NETGRAPH)" > opt_netgraph.h
   24 
   25 opt_ng_cronyx.h:
   26 .if ${NG_CRONYX} != 0
   27         echo "#define NETGRAPH_CRONYX 1" > opt_ng_cronyx.h
   28 .else
   29         echo "" > opt_ng_cronyx.h
   30 .endif
   31 
   32 sppp.h:
   33 .if ${NG_CRONYX} == 0
   34         echo "#define NSPPP 1" > sppp.h
   35 .else
   36         echo "#define NSPPP 0" > sppp.h
   37 .endif  
   38 
   39 bpf.h:
   40         echo "#define NBPF ${NBPF}" > bpf.h
   41 
   42 .include <bsd.kmod.mk>

Cache object: e5766dedfffa5d34b1663301ccb1c3af


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