54ef134d1f
are to some assertions and a small change to modesetting code). bump libdrm_intel minor due to added symbols, libdrm doesn't get bumped, no change to symbol list. ok matthieu@.
64 lines
1.3 KiB
Makefile
64 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.3 2009/05/03 19:43:26 oga Exp $
|
|
.include <bsd.xconf.mk>
|
|
|
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
|
|
SUBDIR=intel
|
|
.endif
|
|
|
|
LIB= drm
|
|
|
|
DRM_MAJOR= 2
|
|
DRM_MINOR= 4
|
|
DRM_TINY= 9
|
|
|
|
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} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
$$i ${DESTDIR}${INCSDIR}/"; \
|
|
echo "\tinstalling $$i"; \
|
|
eval "$$j"; \
|
|
done
|
|
|
|
NOPROFILE =
|
|
|
|
obj: _xenocara_obj
|
|
|
|
.include <bsd.lib.mk>
|
|
.include <bsd.xorg.mk>
|
|
|
|
libdrm.pc: libdrm.pc.in Makefile
|
|
sed -e 's,@prefix@,$(X11BASE),' \
|
|
-e 's,@exec_prefix@,${X11BASE},' \
|
|
-e 's,@libdir@,${LIBDIR},' \
|
|
-e 's,@includedir@,${INCSDIR},' \
|
|
-e 's,@PACKAGE_VERSION@,$(DRM_MAJOR).$(DRM_MINOR).$(DRM_TINY),' \
|
|
< ${.CURDIR}/libdrm.pc.in > libdrm.pc
|
|
|
|
afterinstall: libdrm.pc
|
|
$(INSTALL) -c -m 644 -o root -g wheel libdrm.pc \
|
|
${DESTDIR}${LIBDIR}/pkgconfig
|
|
|
|
CLEANFILES+= libdrm.pc
|
|
|
|
.include <bsd.subdir.mk>
|