mapi: Inline shared-glapi/Makefile.
authorMatt Turner <mattst88@gmail.com>
Thu, 14 Aug 2014 19:20:12 +0000 (12:20 -0700)
committerMatt Turner <mattst88@gmail.com>
Tue, 19 Aug 2014 01:24:09 +0000 (18:24 -0700)
configure.ac
src/mapi/Makefile.am
src/mapi/shared-glapi/Makefile.am [deleted file]

index dc81c807446e3315db843cf3c5c5670950c166ac..97d5394ff3ebed0d9ac2ee9e2a720dfb2a7e556e 100644 (file)
@@ -2243,7 +2243,6 @@ AC_CONFIG_FILES([Makefile
                src/mapi/glapi/Makefile
                src/mapi/glapi/gen/Makefile
                src/mapi/glapi/tests/Makefile
-               src/mapi/shared-glapi/Makefile
                src/mapi/shared-glapi/tests/Makefile
                src/mapi/vgapi/Makefile
                src/mapi/vgapi/vg.pc
index ef538039b9ae7e0077c83537acb5d9ce7420fefb..94657b0c3c7d410d3434fa706d1e832c35c148ec 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright © 2013 Intel Corporation
+# Copyright © 2013, 2014 Intel Corporation
 #
 # Permission is hereby granted, free of charge, to any person obtaining a
 # copy of this software and associated documentation files (the "Software"),
 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 # IN THE SOFTWARE.
 
-SUBDIRS = glapi/gen
+SUBDIRS = glapi/gen .
+
+TOP = $(top_srcdir)
+
+BUILT_SOURCES =
+CLEANFILES = $(BUILT_SOURCES)
+
+lib_LTLIBRARIES =
+
+AM_CFLAGS = $(PTHREAD_CFLAGS)
+AM_CPPFLAGS =                                                  \
+       $(DEFINES)                                              \
+       $(SELINUX_CFLAGS)                                       \
+       -I$(top_srcdir)/include                                 \
+       -I$(top_srcdir)/src/mapi                                \
+       -I$(top_builddir)/src/mapi
+
+GLAPI = $(top_srcdir)/src/mapi/glapi
+include Makefile.sources
+include glapi/gen/glapi_gen.mk
 
 if HAVE_SHARED_GLAPI
-SUBDIRS += shared-glapi
+SUBDIRS += shared-glapi/tests
+
+BUILT_SOURCES += shared-glapi/glapi_mapi_tmp.h
+
+lib_LTLIBRARIES += shared-glapi/libglapi.la
+shared_glapi_libglapi_la_SOURCES = $(MAPI_GLAPI_FILES)
+shared_glapi_libglapi_la_CPPFLAGS = \
+       $(AM_CPPFLAGS) \
+       -DMAPI_MODE_GLAPI \
+       -DMAPI_ABI_HEADER=\"shared-glapi/glapi_mapi_tmp.h\"
+shared_glapi_libglapi_la_LIBADD = \
+       $(PTHREAD_LIBS) \
+       $(SELINUX_LIBS)
+shared_glapi_libglapi_la_LDFLAGS = \
+       -no-undefined \
+       $(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)
 endif
 
 if HAVE_OPENGL
@@ -40,3 +78,5 @@ endif
 if HAVE_OPENVG
 SUBDIRS += vgapi
 endif
+
+include $(top_srcdir)/install-lib-links.mk
diff --git a/src/mapi/shared-glapi/Makefile.am b/src/mapi/shared-glapi/Makefile.am
deleted file mode 100644 (file)
index 330719c..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-# Used by OpenGL ES or when --enable-shared-glapi is specified
-
-SUBDIRS = . tests
-
-TOP = $(top_srcdir)
-GLAPI = $(top_srcdir)/src/mapi/glapi
-include $(top_srcdir)/src/mapi/Makefile.sources
-
-lib_LTLIBRARIES = libglapi.la
-libglapi_la_SOURCES = $(MAPI_GLAPI_FILES)
-libglapi_la_LIBADD = $(PTHREAD_LIBS) $(SELINUX_LIBS)
-libglapi_la_LDFLAGS = \
-       -no-undefined \
-       $(GC_SECTIONS) \
-       $(LD_NO_UNDEFINED)
-
-include $(GLAPI)/gen/glapi_gen.mk
-glapi_mapi_tmp.h : $(GLAPI)/gen/gl_and_es_API.xml $(glapi_gen_mapi_deps)
-       $(call glapi_gen_mapi,$<,shared-glapi)
-
-BUILT_SOURCES = glapi_mapi_tmp.h
-CLEANFILES = $(BUILT_SOURCES)
-
-AM_CFLAGS = $(PTHREAD_CFLAGS)
-AM_CPPFLAGS =                                                  \
-       $(DEFINES)                                              \
-       $(SELINUX_CFLAGS)                                       \
-       -I$(top_srcdir)/include                                 \
-       -I$(top_srcdir)/src/mapi                                \
-       -I$(top_builddir)/src/mapi                              \
-       -DMAPI_MODE_GLAPI                                       \
-       -DMAPI_ABI_HEADER=\"shared-glapi/glapi_mapi_tmp.h\"
-
-include $(top_srcdir)/install-lib-links.mk