blob: a42679b1f8c927794a3cb937977e3f997144fe7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile.inc,v 1.4 2022/06/06 12:18:02 jsg Exp $
# bsd.lib.mk and bsd.xorg.mk both include Makefile.inc
.if !defined(DRM_MK_INC)
DRM_SRC?= ${.CURDIR}/../..
CPPFLAGS+= -I${DRM_SRC} \
-I${DRM_SRC}/include/drm \
-I${DRM_SRC}/generated
.include "config.mk"
.endif
DRM_MK_INC=Done
|