Home | History | Annotate | Line # | Download | only in wsmoused
Makefile revision 1.5
      1 # $NetBSD: Makefile,v 1.5 2003/08/06 18:07:53 jmmv Exp $
      2 #
      3 
      4 PROG=	wsmoused
      5 SRCS=	wsmoused.c config.c config_yacc.y config_lex.l
      6 
      7 MAN=	wsmoused.conf.5 wsmoused.8
      8 
      9 WSMOUSED_SELECTION_MODE?=	yes
     10 
     11 .if !empty(WSMOUSED_SELECTION_MODE:M[Yy][Ee][Ss])
     12 CPPFLAGS+=	-DWSMOUSED_SELECTION_MODE
     13 SRCS+=		selection.c
     14 .endif
     15 
     16 CPPFLAGS+=	-I${.CURDIR} -I.
     17 LDADD+=		-lutil
     18 
     19 YHEADER=	yes
     20 
     21 .include <bsd.prog.mk>
     22