diff options
Diffstat (limited to 'src/mapi/shared-glapi/Makefile.am')
-rw-r--r-- | src/mapi/shared-glapi/Makefile.am | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/mapi/shared-glapi/Makefile.am b/src/mapi/shared-glapi/Makefile.am new file mode 100644 index 00000000000..f8e0271d71b --- /dev/null +++ b/src/mapi/shared-glapi/Makefile.am @@ -0,0 +1,25 @@ +# Used by OpenGL ES or when --enable-shared-glapi is specified + +TOP = $(top_srcdir) +GLAPI = $(top_srcdir)/src/mapi/glapi +include $(top_srcdir)/src/mapi/mapi/sources.mak + +lib_LTLIBRARIES = libglapi.la +libglapi_la_SOURCES = $(MAPI_GLAPI_FILES) + +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 + +AM_CPPFLAGS = \ + $(DEFINES) \ + -I$(top_srcdir)/include \ + -I$(top_srcdir)/src/mapi \ + -DMAPI_MODE_GLAPI \ + -DMAPI_ABI_HEADER=\"shared-glapi/glapi_mapi_tmp.h\" + +all-local: libglapi.la + $(MKDIR_P) $(top_builddir)/$(LIB_DIR) + ln -f .libs/libglapi.so.0.0.0 $(top_builddir)/$(LIB_DIR)/libglapi.so |