OSDN Git Service

radeon: Fix typo in stderr message
[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-vc4 \
33         --enable-vmwgfx \
34         --enable-omap-experimental-api \
35         --enable-exynos-experimental-api \
36         --enable-freedreno \
37         --enable-freedreno-kgsl\
38         --enable-tegra-experimental-api \
39         --enable-install-test-programs \
40         --enable-cairo-tests \
41         --enable-manpages \
42         --enable-valgrind
43
44 pkgconfigdir = @pkgconfigdir@
45 pkgconfig_DATA = libdrm.pc
46
47 if HAVE_LIBKMS
48 LIBKMS_SUBDIR = libkms
49 endif
50
51 if HAVE_INTEL
52 INTEL_SUBDIR = intel
53 endif
54
55 if HAVE_NOUVEAU
56 NOUVEAU_SUBDIR = nouveau
57 endif
58
59 if HAVE_RADEON
60 RADEON_SUBDIR = radeon
61 endif
62
63 if HAVE_AMDGPU
64 AMDGPU_SUBDIR = amdgpu
65 endif
66
67 if HAVE_OMAP
68 OMAP_SUBDIR = omap
69 endif
70
71 if HAVE_EXYNOS
72 EXYNOS_SUBDIR = exynos
73 endif
74
75 if HAVE_FREEDRENO
76 FREEDRENO_SUBDIR = freedreno
77 endif
78
79 if HAVE_TEGRA
80 TEGRA_SUBDIR = tegra
81 endif
82
83 if HAVE_VC4
84 VC4_SUBDIR = vc4
85 endif
86
87 if BUILD_MANPAGES
88 if HAVE_MANPAGES_STYLESHEET
89 MAN_SUBDIR = man
90 endif
91 endif
92
93 SUBDIRS = \
94         . \
95         $(LIBKMS_SUBDIR) \
96         $(INTEL_SUBDIR) \
97         $(NOUVEAU_SUBDIR) \
98         $(RADEON_SUBDIR) \
99         $(AMDGPU_SUBDIR) \
100         $(OMAP_SUBDIR) \
101         $(EXYNOS_SUBDIR) \
102         $(FREEDRENO_SUBDIR) \
103         $(TEGRA_SUBDIR) \
104         $(VC4_SUBDIR) \
105         tests \
106         $(MAN_SUBDIR)
107
108 libdrm_la_LTLIBRARIES = libdrm.la
109 libdrm_ladir = $(libdir)
110 libdrm_la_LDFLAGS = -version-number 2:4:0 -no-undefined
111 libdrm_la_LIBADD = @CLOCK_LIB@ -lm
112
113 libdrm_la_CPPFLAGS = -I$(top_srcdir)/include/drm
114 AM_CFLAGS = \
115         $(WARN_CFLAGS) \
116         $(VALGRIND_CFLAGS)
117
118 libdrm_la_SOURCES = $(LIBDRM_FILES)
119
120 libdrmincludedir = ${includedir}
121 libdrminclude_HEADERS = $(LIBDRM_H_FILES)
122
123 klibdrmincludedir = ${includedir}/libdrm
124 klibdrminclude_HEADERS = $(LIBDRM_INCLUDE_H_FILES)
125
126 if HAVE_VMWGFX
127 klibdrminclude_HEADERS += $(LIBDRM_INCLUDE_VMWGFX_H_FILES)
128 endif
129
130
131 copy-headers :
132         cp -r $(kernel_source)/include/uapi/drm/*.h $(top_srcdir)/include/drm/
133
134 commit-headers : copy-headers
135         git add include/drm/*.h
136         git commit -am "Copy headers from kernel $$(GIT_DIR=$(kernel_source)/.git git describe)"