blob: 12808d86e3414e752328c40083373f99ac53570c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: options.mk,v 1.1 2006/07/17 22:16:55 rillig Exp $
#
PKG_SUPPORTED_OPTIONS= debug
PKG_SUGGESTED_OPTIONS= # none
PKG_OPTIONS_VAR= PKG_OPTIONS.cqual
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
pre-configure:
${ECHO} "Enable debugging" > ${WRKSRC}/TODO-LOCAL
.endif
|