blob: 823c0c292361a259acee32c5daf612f4e96cceee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# $OpenBSD: Makefile,v 1.7 2012/08/29 12:51:04 mpi Exp $
.include <bsd.xconf.mk>
.include "${.CURDIR}/Makefile.inc"
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
SUBDIR=intel radeon
.elif ${MACHINE} == "macppc"
SUBDIR=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>
|