diff options
author | David Reveman <davidr@novell.com> | 2004-11-03 22:50:58 +0000 |
---|---|---|
committer | David Reveman <davidr@novell.com> | 2004-11-03 22:50:58 +0000 |
commit | 019e7f7e630ce6faeedeb1cf0b9a340530790101 (patch) | |
tree | bd05c27a379cd29d13a7b66e572279fb49ecacfa /src/glx/Makefile.am | |
parent | 0ef062afaa57e370ac68b26d11f4cd60f2b0388b (diff) |
Source tree restructuring and switch to new drawable interface
Diffstat (limited to 'src/glx/Makefile.am')
-rw-r--r-- | src/glx/Makefile.am | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/glx/Makefile.am b/src/glx/Makefile.am new file mode 100644 index 0000000..0fffbc0 --- /dev/null +++ b/src/glx/Makefile.am @@ -0,0 +1,40 @@ +if GLITZ_BUILD_GLX_BACKEND + +INCLUDES = \ + $(GLITZ_INC) \ + $(GLX_CFLAGS) + +lib_LTLIBRARIES = libglitz-glx.la +include_HEADERS = glitz-glx.h + +libglitz_glx_la_SOURCES = \ + glitz-glx.h \ + glitz_glx_drawable.c \ + glitz_glx_format.c \ + glitz_glx_info.c \ + glitz_glx_extension.c \ + glitz_glx_context.c \ + glitz_glx_pbuffer.c \ + glitz_glxext.h \ + glitz_glxint.h + +libglitz_glx_la_LDFLAGS = -version-info @VERSION_INFO@ -no-undefined +libglitz_glx_la_LIBADD = $(GLITZ_LIB) $(GLX_LIBS) + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = glitz-glx.pc + +endif + +EXTRA_DIST = \ + glitz-glx.h \ + glitz_glx_drawable.c \ + glitz_glx_format.c \ + glitz_glx_info.c \ + glitz_glx_extension.c \ + glitz_glx_context.c \ + glitz_glx_pbuffer.c \ + glitz_glxext.h \ + glitz_glxint.h \ + glitz-glx.pc.in \ + glitz-glx.man |