OSDN Git Service

Update README.md
[android-x86/hardware-intel-common-vaapi.git] / src / Makefile.am
1 # Copyright (c) 2007 Intel Corporation. All Rights Reserved.
2 #
3 # Permission is hereby granted, free of charge, to any person obtaining a
4 # copy of this software and associated documentation files (the
5 # "Software"), to deal in the Software without restriction, including
6 # without limitation the rights to use, copy, modify, merge, publish,
7 # distribute, sub license, and/or sell copies of the Software, and to
8 # permit persons to whom the Software is furnished to do so, subject to
9 # the following conditions:
10
11 # The above copyright notice and this permission notice (including the
12 # next paragraph) shall be included in all copies or substantial portions
13 # of the Software.
14
15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
18 # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
19 # ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
23 SUBDIRS         = shaders
24 DIST_SUBDIRS    = $(SUBDIRS)
25 EXTRA_DIST      =
26 BUILT_SOURCES   =
27
28 AM_CPPFLAGS = \
29         -DPTHREADS              \
30         $(DRM_CFLAGS)           \
31         $(LIBVA_DEPS_CFLAGS)    \
32         -DVA_DRIVERS_PATH="\"$(LIBVA_DRIVERS_PATH)\"" \
33         $(NULL)
34
35 driver_cflags = \
36         -Wall                   \
37         -fvisibility=hidden     \
38         -fstack-protector       \
39         $(NULL)
40
41 driver_ldflags = \
42         -avoid-version          \
43         -no-undefined           \
44         -Wl,--no-undefined      \
45         $(NULL)
46
47 driver_libs = \
48         -lpthread -lm -ldl      \
49         $(DRM_LIBS)             \
50         $(NULL)
51
52 include Makefile.sources
53
54 # convenience library that can be linked by driver and tests
55 noinst_LTLIBRARIES              = libi965_drv_video.la
56 libi965_drv_video_la_CFLAGS     = $(driver_cflags)
57 libi965_drv_video_la_LDFLAGS    = $(driver_ldflags)
58 libi965_drv_video_la_LIBADD     = $(driver_libs)
59 libi965_drv_video_la_SOURCES    = $(source_c)
60
61 # driver module
62 i965_drv_video_la_LTLIBRARIES   = i965_drv_video.la
63 i965_drv_video_ladir            = $(LIBVA_DRIVERS_PATH)
64 i965_drv_video_la_CFLAGS        = $(driver_cflags)
65 i965_drv_video_la_LDFLAGS       = -module $(driver_ldflags)
66 i965_drv_video_la_LIBADD        = libi965_drv_video.la $(driver_libs)
67 i965_drv_video_la_SOURCES       =
68
69 noinst_HEADERS                  = $(source_h)
70
71 if USE_X11
72 source_c                        += i965_output_dri.c
73 source_h                        += i965_output_dri.h
74 endif
75
76 if USE_WAYLAND
77 source_c                        += i965_output_wayland.c
78 source_h                        += i965_output_wayland.h
79 source_h                        += $(protocol_source_h)
80 driver_cflags                   += $(WAYLAND_CLIENT_CFLAGS)
81 endif
82
83 # git version
84 VERSION_FILE                    = .VERSION
85 OLD_VERSION_FILE                = $(VERSION_FILE).old
86 NEW_VERSION_FILE                = $(VERSION_FILE).new
87 PKG_VERSION_FILE                = $(VERSION_FILE).pkg
88
89 intel_version.h: gen-version
90         $(AM_V_GEN)                                                      \
91         OV=`[ -f $(OLD_VERSION_FILE) ] && cat $(OLD_VERSION_FILE) || :`; \
92         NV=`cat $(NEW_VERSION_FILE)`;                                    \
93         if [ "$$OV" != "$$NV" -o ! -f intel_version.h ]; then            \
94                 cp -f $(NEW_VERSION_FILE) $(OLD_VERSION_FILE);           \
95                 $(SED) -e "s|\@INTEL_DRIVER_GIT_VERSION\@|$${NV}|"       \
96                         $(srcdir)/intel_version.h.in > intel_version.h;  \
97         fi
98
99 gen-version:
100         @echo $(VERSION) > $(NEW_VERSION_FILE)
101 if HAVE_GIT
102         @[ -d $(top_srcdir)/.git ] && \
103         (cd $(top_srcdir) && $(GIT) describe --tags) > $(NEW_VERSION_FILE) || :
104 endif
105         @[ -f $(srcdir)/$(PKG_VERSION_FILE) ] && \
106         cp -f $(srcdir)/$(PKG_VERSION_FILE) $(NEW_VERSION_FILE) || :
107
108 $(PKG_VERSION_FILE): $(NEW_VERSION_FILE)
109         @cp -f $< $@
110
111 BUILT_SOURCES   += intel_version.h
112 EXTRA_DIST      += Android.mk intel_version.h.in $(PKG_VERSION_FILE)
113
114 # Wayland protocol
115 if USE_WAYLAND
116 protocol_source_h = wayland-drm-client-protocol.h
117 i965_output_wayland.c: $(protocol_source_h)
118 %-client-protocol.h : %.xml
119         $(AM_V_GEN)$(WAYLAND_SCANNER) client-header < $< > $@
120
121 BUILT_SOURCES += $(protocol_source_h)
122 endif
123
124 EXTRA_DIST += \
125         wayland-drm.xml         \
126         $(NULL)
127
128 CLEANFILES = $(BUILT_SOURCES)
129
130 DISTCLEANFILES = \
131         $(VERSION_FILE) \
132         $(OLD_VERSION_FILE)     \
133         $(PKG_VERSION_FILE)     \
134         $(NEW_VERSION_FILE)     \
135         $(NULL)
136
137 # Extra clean files so that maintainer-clean removes *everything*
138 MAINTAINERCLEANFILES = Makefile.in config.h.in