blob: 7abdbdac6cfeb8f489bb49663cf67e3fdeb6fa8a (
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
|
# $OpenBSD: Makefile,v 1.3 2013/05/19 14:09:56 jsg Exp $
.include <bsd.xconf.mk>
LIB= drm_radeon
INCSDIR= ${X11BASE}/include/
CPPFLAGS+= -I${.CURDIR} \
-I${.CURDIR}/.. \
-I${X11BASE}/include \
-I/usr/include/dev/pci/drm
INCS= radeon_bo.h \
radeon_cs.h \
radeon_bo_gem.h \
radeon_cs_gem.h \
radeon_bo_int.h \
radeon_cs_int.h \
r600_pci_ids.h \
radeon_surface.h
SRCS= radeon_bo_gem.c \
radeon_cs_gem.c \
radeon_cs_space.c \
radeon_bo.c \
radeon_cs.c \
radeon_surface.c \
bof.c
PKGCONFIG= libdrm_radeon.pc
LDADD+= -L${X11BASE}/lib -lX11
.include <bsd.lib.mk>
.include <bsd.xorg.mk>
|