glsl: Prepare standalone compiler to be able to use parameter lists
[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_GALLIUM_RADEON_COMMON
54 SUBDIRS += amd
55 endif
56
57 if HAVE_INTEL_DRIVERS
58 SUBDIRS += intel
59 endif
60
61 if NEED_OPENGL_COMMON
62 SUBDIRS += mesa
63 endif
64
65 SUBDIRS += loader
66
67 if HAVE_DRI_GLX
68 SUBDIRS += glx
69 endif
70
71 ## Optionally required by GBM and EGL
72 if HAVE_PLATFORM_WAYLAND
73 SUBDIRS += egl/wayland/wayland-drm
74 endif
75
76 ## Optionally required by EGL (aka PLATFORM_GBM)
77 if HAVE_GBM
78 SUBDIRS += gbm
79 endif
80
81 ## Optionally required by EGL
82 if HAVE_PLATFORM_WAYLAND
83 SUBDIRS += egl/wayland/wayland-egl
84 endif
85
86 if HAVE_EGL
87 SUBDIRS += egl
88 endif
89
90 if HAVE_INTEL_DRIVERS
91 SUBDIRS += intel/tools
92 endif
93
94 ## Requires the i965 compiler (part of mesa) and wayland-drm
95 if HAVE_INTEL_VULKAN
96 SUBDIRS += intel/vulkan
97 endif
98
99 if HAVE_GALLIUM
100 SUBDIRS += gallium
101 endif
102
103 EXTRA_DIST = \
104 getopt hgl SConscript
105
106 AM_CFLAGS = $(VISIBILITY_CFLAGS)
107 AM_CXXFLAGS = $(VISIBILITY_CXXFLAGS)
108
109 AM_CPPFLAGS = \
110 -I$(top_srcdir)/include/ \
111 -I$(top_srcdir)/src/mapi/ \
112 -I$(top_srcdir)/src/mesa/ \
113 -I$(top_srcdir)/src/gallium/include \
114 -I$(top_srcdir)/src/gallium/auxiliary \
115 $(DEFINES)
116
117 noinst_LTLIBRARIES = libglsl_util.la
118
119 libglsl_util_la_SOURCES = \
120 mesa/main/extensions_table.c \
121 mesa/main/imports.c \
122 mesa/program/prog_parameter.c \
123 mesa/program/symbol_table.c \
124 mesa/program/dummy_errors.c