glsl: reuse main extension table to appropriately restrict extensions
[mesa.git] / src / Makefile.am
1 # Copyright © 2013 Intel Corporation
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 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 # and/or sell copies of the Software, and to permit persons to whom the
8 # 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 NONINFRINGEMENT. IN NO EVENT SHALL
17 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20 # IN THE SOFTWARE.
21
22 .PHONY: git_sha1.h.tmp
23 git_sha1.h.tmp:
24 @# Don't assume that $(top_srcdir)/.git is a directory. It may be
25 @# a gitlink file if $(top_srcdir) is a submodule checkout or a linked
26 @# worktree.
27 @# If we are building from a release tarball copy the bundled header.
28 @touch git_sha1.h.tmp
29 @if test -e $(top_srcdir)/.git; then \
30 if which git > /dev/null; then \
31 git --git-dir=$(top_srcdir)/.git log -n 1 --oneline | \
32 sed 's/^\([^ ]*\) .*/#define MESA_GIT_SHA1 "git-\1"/' \
33 > git_sha1.h.tmp ; \
34 fi \
35 fi
36
37 git_sha1.h: git_sha1.h.tmp
38 @echo "updating git_sha1.h"
39 @if ! cmp -s git_sha1.h.tmp git_sha1.h; then \
40 mv git_sha1.h.tmp git_sha1.h ;\
41 else \
42 rm git_sha1.h.tmp ;\
43 fi
44
45 BUILT_SOURCES = git_sha1.h
46 CLEANFILES = $(BUILT_SOURCES)
47
48 SUBDIRS = . gtest util mapi/glapi/gen mapi
49
50 # include only conditionally ?
51 SUBDIRS += compiler
52
53 if HAVE_INTEL_DRIVERS
54 SUBDIRS += intel
55 endif
56
57 if NEED_OPENGL_COMMON
58 SUBDIRS += mesa
59 endif
60
61 SUBDIRS += loader
62
63 if HAVE_DRI_GLX
64 SUBDIRS += glx
65 endif
66
67 ## Optionally required by GBM and EGL
68 if HAVE_PLATFORM_WAYLAND
69 SUBDIRS += egl/wayland/wayland-drm
70 endif
71
72 ## Optionally required by EGL (aka PLATFORM_GBM)
73 if HAVE_GBM
74 SUBDIRS += gbm
75 endif
76
77 ## Optionally required by EGL
78 if HAVE_PLATFORM_WAYLAND
79 SUBDIRS += egl/wayland/wayland-egl
80 endif
81
82 if HAVE_EGL
83 SUBDIRS += egl
84 endif
85
86 ## Requires the i965 compiler (part of mesa) and wayland-drm
87 if HAVE_INTEL_VULKAN
88 SUBDIRS += intel/vulkan
89 endif
90
91 if HAVE_GALLIUM
92 SUBDIRS += gallium
93 endif
94
95 EXTRA_DIST = \
96 getopt hgl SConscript
97
98 AM_CFLAGS = $(VISIBILITY_CFLAGS)
99 AM_CXXFLAGS = $(VISIBILITY_CXXFLAGS)
100
101 AM_CPPFLAGS = \
102 -I$(top_srcdir)/include/ \
103 -I$(top_srcdir)/src/mapi/ \
104 -I$(top_srcdir)/src/mesa/ \
105 $(DEFINES)
106
107 noinst_LTLIBRARIES = libglsl_util.la
108
109 libglsl_util_la_SOURCES = \
110 mesa/main/extensions_table.c \
111 mesa/main/imports.c \
112 mesa/program/prog_hash_table.c \
113 mesa/program/symbol_table.c \
114 mesa/program/dummy_errors.c