Replace gl_vert_result enum with gl_varying_slot.
[mesa.git] / src / mesa / Makefile.am
1 # Copyright © 2012 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 if NEED_LIBDRICORE
23 DRICORE_SUBDIR = libdricore
24 endif
25
26 SUBDIRS = program x86 x86-64 . $(DRICORE_SUBDIR) drivers
27
28 gldir = $(includedir)/GL
29 gl_HEADERS = $(top_srcdir)/include/GL/*.h
30
31 .PHONY: main/git_sha1.h.tmp
32 main/git_sha1.h.tmp:
33 @touch main/git_sha1.h.tmp
34 @if test -d ../../.git; then \
35 if which git > /dev/null; then \
36 git log -n 1 --oneline | \
37 sed 's/^\([^ ]*\) .*/#define MESA_GIT_SHA1 "git-\1"/' \
38 > main/git_sha1.h.tmp ; \
39 fi \
40 fi
41
42 main/git_sha1.h: main/git_sha1.h.tmp
43 @echo "updating main/git_sha1.h"
44 @if ! cmp -s main/git_sha1.h.tmp main/git_sha1.h; then \
45 mv main/git_sha1.h.tmp main/git_sha1.h ;\
46 else \
47 rm main/git_sha1.h.tmp ;\
48 fi
49
50 # include glapi_gen.mk for generating glapi headers for GLES
51 GLAPI = $(top_srcdir)/src/mapi/glapi/gen
52 include $(GLAPI)/glapi_gen.mk
53
54 BUILT_SOURCES = \
55 main/git_sha1.h \
56 main/get_hash.h
57 CLEANFILES = \
58 $(BUILT_SOURCES) \
59 git_sha1.h.tmp
60
61 GET_HASH_GEN = main/get_hash_generator.py
62 GET_HASH_GEN_FLAGS := $(patsubst -DFEATURE_%=1,-a %, \
63 $(patsubst -DFEATURE_%=0,,$(API_DEFINES)))
64
65 main/get_hash.h: $(GLAPI)/gl_and_es_API.xml main/get_hash_params.py \
66 $(GET_HASH_GEN) Makefile
67 $(AM_V_GEN)set -e; \
68 $(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/$(GET_HASH_GEN) \
69 $(GET_HASH_GEN_FLAGS) -f $< > $@.tmp; \
70 mv $@.tmp $@;
71
72 noinst_LTLIBRARIES =
73 if NEED_LIBMESA
74 noinst_LTLIBRARIES += libmesa.la
75 else
76 check_LTLIBRARIES = libmesa.la
77 endif
78 if HAVE_GALLIUM
79 noinst_LTLIBRARIES += libmesagallium.la
80 endif
81
82 SRCDIR = $(top_srcdir)/src/mesa/
83 BUILDDIR = $(top_builddir)/src/mesa/
84 include sources.mak
85
86 AM_CPPFLAGS = $(API_DEFINES) $(DEFINES) $(INCLUDE_DIRS)
87 AM_CFLAGS = $(LLVM_CFLAGS) $(VISIBILITY_CFLAGS)
88 AM_CXXFLAGS = $(LLVM_CFLAGS) $(VISIBILITY_CXXFLAGS)
89
90 MESA_ASM_FILES_FOR_ARCH =
91
92 if HAVE_X86_ASM
93 MESA_ASM_FILES_FOR_ARCH += $(X86_FILES)
94 AM_CPPFLAGS += \
95 -I$(top_builddir)/src/mesa/x86 \
96 -I$(top_srcdir)/src/mesa/x86
97 endif
98 if HAVE_X86_64_ASM
99 MESA_ASM_FILES_FOR_ARCH += $(X86_64_FILES)
100 AM_CPPFLAGS += \
101 -I$(top_builddir)/src/mesa/x86-64 \
102 -I$(top_srcdir)/src/mesa/x86-64
103 endif
104 if HAVE_SPARC_ASM
105 MESA_ASM_FILES_FOR_ARCH += $(SPARC_FILES)
106 AM_CPPFLAGS += \
107 -I$(top_builddir)/src/mesa/sparc \
108 -I$(top_srcdir)/src/mesa/sparc
109 endif
110
111 libmesa_la_SOURCES = \
112 $(MESA_FILES) \
113 $(MESA_ASM_FILES_FOR_ARCH)
114
115 libmesa_la_LIBADD = \
116 $(top_builddir)/src/glsl/libglsl.la \
117 $(top_builddir)/src/mesa/program/libprogram.la \
118 $()
119 libmesa_la_LDFLAGS =
120
121 libmesagallium_la_SOURCES = \
122 $(MESA_GALLIUM_FILES) \
123 $(MESA_ASM_FILES_FOR_ARCH)
124
125 libmesagallium_la_LIBADD = \
126 $(top_builddir)/src/glsl/libglsl.la \
127 $(top_builddir)/src/mesa/program/libprogram.la \
128 $()
129
130 pkgconfigdir = $(libdir)/pkgconfig
131 pkgconfig_DATA = gl.pc
132
133 # Emacs tags
134 tags:
135 etags `find . -name \*.[ch]` $(top_srcdir)/include/GL/*.h