16 lines
309 B
Makefile
16 lines
309 B
Makefile
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.1 2019/04/16 01:54:21 jsg Exp $
|
||
|
|
||
|
.include <bsd.xconf.mk>
|
||
|
|
||
|
.if ${XENOCARA_BUILD_GL:L} != "yes"
|
||
|
CONFIGURE_ARGS= --disable-glamor
|
||
|
.else
|
||
|
CONFIGURE_ARGS= --enable-glamor
|
||
|
.endif
|
||
|
|
||
|
.if ${XENOCARA_BUILD_DRI:L} != "yes"
|
||
|
CONFIGURE_ARGS+= --disable-dri
|
||
|
.endif
|
||
|
|
||
|
.include <bsd.xorg.mk>
|