Home | History | Annotate | Line # | Download | only in route
Makefile revision 1.24
      1  1.24     pooka #	$NetBSD: Makefile,v 1.24 2010/11/04 23:36:10 pooka Exp $
      2  1.11       cgd #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3   1.1       cgd 
      4  1.22     lukem .include <bsd.own.mk>
      5  1.22     lukem 
      6   1.1       cgd PROG=	route
      7  1.10       cgd MAN=	route.8
      8  1.23      matt SRCS=	route.c show.c keywords.c
      9  1.19    itojun 
     10  1.22     lukem .if (${USE_INET6} != "no")
     11  1.20    itojun CPPFLAGS+=-DINET6
     12  1.22     lukem .endif
     13   1.1       cgd 
     14  1.14       gwr # The Makefile over in ../../distrib/utils/x_route
     15  1.14       gwr # would like keywords.[ch] to always exist here, so
     16  1.14       gwr # they are now checked in as sources.
     17  1.14       gwr #
     18  1.18  christos # CPPFLAGS+=-I.
     19  1.13       gwr # CLEANFILES+= keywords.c keywords.h
     20  1.13       gwr # keywords.c keywords.h : keywords.sh
     21  1.21     lukem # 	${HOST_SH} keywords.sh
     22   1.8       cgd 
     23  1.24     pooka #
     24  1.24     pooka # Compile-time debug flag.  If compiled with "make RUMP_ACTION=1",
     25  1.24     pooka # make rump system calls.
     26  1.24     pooka #
     27  1.24     pooka .ifdef RUMP_ACTION
     28  1.24     pooka CPPFLAGS+=      -DRUMP_SYS_NETWORKING -DRUMP_SYS_READWRITE -DRUMP_SYS_CLOSE
     29  1.24     pooka CPPFLAGS+=      -DRUMP_ACTION -DSMALL -Dsysctl=rump_sys___sysctl
     30  1.24     pooka LDADD+=         -lrumpclient
     31  1.24     pooka DBG=            -g
     32  1.24     pooka .endif
     33  1.24     pooka 
     34   1.1       cgd .include <bsd.prog.mk>
     35