summaryrefslogtreecommitdiffstats
path: root/src/mapi/Makefile.am
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2014-12-12 12:09:34 -0800
committerMatt Turner <mattst88@gmail.com>2014-12-12 12:11:50 -0800
commit3f3aeb53337615b888e605635ac9660e4ada354c (patch)
treef0fc00466219fee108544061b61ce36dd1ed4fce /src/mapi/Makefile.am
parent5ea4b25fba39eb2f26dad24acb55f4c2166f40d1 (diff)
downloadexternal_mesa3d-3f3aeb53337615b888e605635ac9660e4ada354c.zip
external_mesa3d-3f3aeb53337615b888e605635ac9660e4ada354c.tar.gz
external_mesa3d-3f3aeb53337615b888e605635ac9660e4ada354c.tar.bz2
mapi: Move rules for generating glapi_mapi_tmp.h out of the conditional.
Allows distcheck to succeed, regardless of how Mesa has been configured.
Diffstat (limited to 'src/mapi/Makefile.am')
-rw-r--r--src/mapi/Makefile.am10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mapi/Makefile.am b/src/mapi/Makefile.am
index 41352e0..024283c 100644
--- a/src/mapi/Makefile.am
+++ b/src/mapi/Makefile.am
@@ -69,9 +69,6 @@ shared_glapi_libglapi_la_LDFLAGS = \
$(GC_SECTIONS) \
$(LD_NO_UNDEFINED)
-shared-glapi/glapi_mapi_tmp.h : $(GLAPI)/gen/gl_and_es_API.xml $(glapi_gen_mapi_deps)
- $(call glapi_gen_mapi,$<,shared-glapi)
-
TESTS += shared-glapi-test
check_PROGRAMS += shared-glapi-test
@@ -84,6 +81,9 @@ shared_glapi_test_LDADD = \
$(top_builddir)/src/gtest/libgtest.la
endif
+shared-glapi/glapi_mapi_tmp.h : $(GLAPI)/gen/gl_and_es_API.xml $(glapi_gen_mapi_deps)
+ $(call glapi_gen_mapi,$<,shared-glapi)
+
if HAVE_OPENGL
noinst_LTLIBRARIES = glapi/libglapi.la
@@ -165,10 +165,10 @@ es1api_libGLESv1_CM_la_LDFLAGS = \
if HAVE_SHARED_GLAPI
es1api_libGLESv1_CM_la_LIBADD += shared-glapi/libglapi.la
endif
+endif
es1api/glapi_mapi_tmp.h: glapi/gen/gl_and_es_API.xml $(glapi_gen_mapi_deps)
$(call glapi_gen_mapi,$<,es1api)
-endif
if HAVE_OPENGL_ES2
TESTS += es2api/ABI-check
@@ -209,10 +209,10 @@ es2api_libGLESv2_la_LDFLAGS = \
if HAVE_SHARED_GLAPI
es2api_libGLESv2_la_LIBADD += shared-glapi/libglapi.la
endif
+endif
es2api/glapi_mapi_tmp.h: glapi/gen/gl_and_es_API.xml $(glapi_gen_mapi_deps)
$(call glapi_gen_mapi,$<,es2api)
-endif
if HAVE_OPENVG
SUBDIRS += vgapi