OSDN Git Service

Force enable amdgpu for the dist build/check.
[android-x86/external-libdrm.git] / Makefile.am
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
21 include Makefile.sources
22
23 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
24
25 AM_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
42 pkgconfigdir = @pkgconfigdir@
43 pkgconfig_DATA = libdrm.pc
44
45 if HAVE_LIBKMS
46 LIBKMS_SUBDIR = libkms
47 endif
48
49 if HAVE_INTEL
50 INTEL_SUBDIR = intel
51 endif
52
53 if HAVE_NOUVEAU
54 NOUVEAU_SUBDIR = nouveau
55 endif
56
57 if HAVE_RADEON
58 RADEON_SUBDIR = radeon
59 endif
60
61 if HAVE_AMDGPU
62 AMDGPU_SUBDIR = amdgpu
63 endif
64
65 if HAVE_OMAP
66 OMAP_SUBDIR = omap
67 endif
68
69 if HAVE_EXYNOS
70 EXYNOS_SUBDIR = exynos
71 endif
72
73 if HAVE_FREEDRENO
74 FREEDRENO_SUBDIR = freedreno
75 endif
76
77 if HAVE_TEGRA
78 TEGRA_SUBDIR = tegra
79 endif
80
81 if BUILD_MANPAGES
82 if HAVE_MANPAGES_STYLESHEET
83 MAN_SUBDIR = man
84 endif
85 endif
86
87 SUBDIRS = \
88         . \
89         $(LIBKMS_SUBDIR) \
90         $(INTEL_SUBDIR) \
91         $(NOUVEAU_SUBDIR) \
92         $(RADEON_SUBDIR) \
93         $(AMDGPU_SUBDIR) \
94         $(OMAP_SUBDIR) \
95         $(EXYNOS_SUBDIR) \
96         $(FREEDRENO_SUBDIR) \
97         $(TEGRA_SUBDIR) \
98         tests \
99         $(MAN_SUBDIR)
100
101 libdrm_la_LTLIBRARIES = libdrm.la
102 libdrm_ladir = $(libdir)
103 libdrm_la_LDFLAGS = -version-number 2:4:0 -no-undefined
104 libdrm_la_LIBADD = @CLOCK_LIB@
105
106 libdrm_la_CPPFLAGS = -I$(top_srcdir)/include/drm
107 AM_CFLAGS = \
108         $(WARN_CFLAGS) \
109         $(VALGRIND_CFLAGS)
110
111 libdrm_la_SOURCES = $(LIBDRM_FILES)
112
113 libdrmincludedir = ${includedir}
114 libdrminclude_HEADERS = $(LIBDRM_H_FILES)
115
116 EXTRA_DIST = Android.mk
117
118 klibdrmincludedir = ${includedir}/libdrm
119 klibdrminclude_HEADERS = $(LIBDRM_INCLUDE_H_FILES)
120
121 if HAVE_VMWGFX
122 klibdrminclude_HEADERS += $(LIBDRM_INCLUDE_VMWGFX_H_FILES)
123 endif
124
125
126 copy-headers :
127         cp -r $(kernel_source)/include/uapi/drm/*.h $(top_srcdir)/include/drm/
128
129 commit-headers : copy-headers
130         git add include/drm/*.h
131         git commit -am "Copy headers from kernel $$(GIT_DIR=$(kernel_source)/.git git describe)"