16 lines
374 B
Makefile
16 lines
374 B
Makefile
# $NetBSD: options.mk,v 1.1 2005/05/31 16:16:50 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.madplay
|
|
PKG_SUPPORTED_OPTIONS= esound oss
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mesound)
|
|
.include "../../audio/esound/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-esd
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Moss)
|
|
.include "../../mk/ossaudio.buildlink3.mk"
|
|
.endif
|