14 lines
384 B
Makefile
14 lines
384 B
Makefile
# $NetBSD: available.mk,v 1.1 2012/12/02 01:21:50 cheusov Exp $
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# At the moment LIRC is available only for Linux. The following
|
|
# condition is here to NOT repeat supported platforms in multiple
|
|
# places, i.e. mplayer, xine, xbmc etc.
|
|
# Also, have a look at buildlink3.mk.
|
|
.if ${OPSYS} == "Linux"
|
|
LIRC_AVAILABLE= yes
|
|
.else
|
|
LIRC_AVAILABLE= no
|
|
.endif
|