269078d2e1
needed for the r600 dri driver. Tested by myself and matthieu.
48 lines
840 B
Makefile
48 lines
840 B
Makefile
# $OpenBSD: Makefile,v 1.6 2011/05/02 21:52:34 oga Exp $
|
|
.include <bsd.xconf.mk>
|
|
.include "${.CURDIR}/Makefile.inc"
|
|
|
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
|
|
SUBDIR=intel radeon
|
|
.endif
|
|
|
|
LIB= drm
|
|
|
|
INCSDIR= ${X11BASE}/include/
|
|
|
|
CPP= cpp -notraditional
|
|
DEBUG?=
|
|
|
|
CPPFLAGS+= -I${.CURDIR} \
|
|
-I${X11BASE}/include \
|
|
-I/usr/include/dev/pci/drm \
|
|
-DX_PRIVSEP
|
|
|
|
INCS= xf86drm.h \
|
|
xf86drmMode.h
|
|
|
|
SRCS= xf86drm.c \
|
|
xf86drmHash.c \
|
|
xf86drmMode.c \
|
|
xf86drmRandom.c \
|
|
xf86drmSL.c
|
|
|
|
includes: _SUBDIRUSE
|
|
cd ${.CURDIR}; for i in ${INCS}; do \
|
|
j="cmp -s $$i ${DESTDIR}${INCSDIR}/$$i || \
|
|
${INSTALL_DATA} $$i ${DESTDIR}${INCSDIR}/"; \
|
|
echo "\tinstalling $$i"; \
|
|
eval "$$j"; \
|
|
done
|
|
|
|
NOPROFILE =
|
|
|
|
PKGCONFIG= libdrm.pc
|
|
|
|
obj: _xenocara_obj
|
|
|
|
.include <bsd.lib.mk>
|
|
.include <bsd.xorg.mk>
|
|
|
|
.include <bsd.subdir.mk>
|