1#  Copyright 2005 Adam Jackson.
2#
3#  Permission is hereby granted, free of charge, to any person obtaining a
4#  copy of this software and associated documentation files (the "Software"),
5#  to deal in the Software without restriction, including without limitation
6#  on the rights to use, copy, modify, merge, publish, distribute, sub
7#  license, and/or sell copies of the Software, and to permit persons to whom
8#  the Software is furnished to do so, subject to the following conditions:
9#
10#  The above copyright notice and this permission notice (including the next
11#  paragraph) shall be included in all copies or substantial portions of the
12#  Software.
13#
14#  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15#  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16#  FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
17#  ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18#  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19#  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
21include Makefile.sources
22
23ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
24
25AM_DISTCHECK_CONFIGURE_FLAGS = \
26	--enable-udev \
27	--enable-libkms \
28	--enable-intel \
29	--enable-radeon \
30	--enable-amdgpu \
31	--enable-nouveau \
32	--enable-vmwgfx \
33	--enable-omap-experimental-api \
34	--enable-exynos-experimental-api \
35	--enable-freedreno \
36	--enable-freedreno-kgsl\
37	--enable-tegra-experimental-api \
38	--enable-install-test-programs \
39	--enable-cairo-tests \
40	--enable-manpages \
41	--enable-valgrind
42
43pkgconfigdir = @pkgconfigdir@
44pkgconfig_DATA = libdrm.pc
45
46if HAVE_LIBKMS
47LIBKMS_SUBDIR = libkms
48endif
49
50if HAVE_INTEL
51INTEL_SUBDIR = intel
52endif
53
54if HAVE_NOUVEAU
55NOUVEAU_SUBDIR = nouveau
56endif
57
58if HAVE_RADEON
59RADEON_SUBDIR = radeon
60endif
61
62if HAVE_AMDGPU
63AMDGPU_SUBDIR = amdgpu
64endif
65
66if HAVE_OMAP
67OMAP_SUBDIR = omap
68endif
69
70if HAVE_EXYNOS
71EXYNOS_SUBDIR = exynos
72endif
73
74if HAVE_FREEDRENO
75FREEDRENO_SUBDIR = freedreno
76endif
77
78if HAVE_TEGRA
79TEGRA_SUBDIR = tegra
80endif
81
82if BUILD_MANPAGES
83if HAVE_MANPAGES_STYLESHEET
84MAN_SUBDIR = man
85endif
86endif
87
88if HAVE_ROCKCHIP
89ROCKCHIP_SUBDIR = rockchip
90endif
91
92SUBDIRS = \
93	. \
94	$(LIBKMS_SUBDIR) \
95	$(INTEL_SUBDIR) \
96	$(NOUVEAU_SUBDIR) \
97	$(RADEON_SUBDIR) \
98	$(AMDGPU_SUBDIR) \
99	$(OMAP_SUBDIR) \
100	$(EXYNOS_SUBDIR) \
101	$(FREEDRENO_SUBDIR) \
102	$(TEGRA_SUBDIR) \
103	tests \
104	$(MAN_SUBDIR) \
105	$(ROCKCHIP_SUBDIR)
106
107libdrm_la_LTLIBRARIES = libdrm.la
108libdrm_ladir = $(libdir)
109libdrm_la_LDFLAGS = -version-number 2:4:0 -no-undefined
110libdrm_la_LIBADD = @CLOCK_LIB@ -lm
111
112libdrm_la_CPPFLAGS = -I$(top_srcdir)/include/drm
113AM_CFLAGS = \
114	$(WARN_CFLAGS) \
115	$(VALGRIND_CFLAGS)
116
117libdrm_la_SOURCES = $(LIBDRM_FILES)
118
119libdrmincludedir = ${includedir}
120libdrminclude_HEADERS = $(LIBDRM_H_FILES)
121
122EXTRA_DIST = Android.mk
123
124klibdrmincludedir = ${includedir}/libdrm
125klibdrminclude_HEADERS = $(LIBDRM_INCLUDE_H_FILES)
126
127if HAVE_VMWGFX
128klibdrminclude_HEADERS += $(LIBDRM_INCLUDE_VMWGFX_H_FILES)
129endif
130
131
132copy-headers :
133	cp -r $(kernel_source)/include/uapi/drm/*.h $(top_srcdir)/include/drm/
134
135commit-headers : copy-headers
136	git add include/drm/*.h
137	git commit -am "Copy headers from kernel $$(GIT_DIR=$(kernel_source)/.git git describe)"
138