From 7fe60435bce6595a9c58a9bfd8244d74b5320e96 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Tue, 15 Jan 2013 08:46:13 +0100 Subject: Import DirectFB141_2k11R3_beta5 --- Source/DirectFB/systems/x11/Makefile.am | 63 +++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100755 Source/DirectFB/systems/x11/Makefile.am (limited to 'Source/DirectFB/systems/x11/Makefile.am') diff --git a/Source/DirectFB/systems/x11/Makefile.am b/Source/DirectFB/systems/x11/Makefile.am new file mode 100755 index 0000000..23c0b88 --- /dev/null +++ b/Source/DirectFB/systems/x11/Makefile.am @@ -0,0 +1,63 @@ +# Makefile.am for DirectFB/systems/x11 + +INCLUDES = \ + -I$(top_srcdir)/include \ + -I$(top_builddir)/include \ + -I$(top_builddir)/lib \ + -I$(top_srcdir)/lib \ + -I$(top_srcdir)/src \ + -I$(top_srcdir)/gfxdrivers \ + $(X11_CFLAGS) + + +systemsdir = $(MODULEDIR)/systems + +if BUILD_STATIC +systems_DATA = libdirectfb_x11.o +endif + +systems_LTLIBRARIES = libdirectfb_x11.la + +libdirectfb_x11_la_LDFLAGS = \ + $(X11_LIBS) \ + -avoid-version \ + -module + +if GFX_GLX +libdirectfb_x11_la_LDFLAGS += -lGL +endif + +libdirectfb_x11_la_SOURCES = \ + primary.c \ + primary.h \ + surfacemanager.c \ + surfacemanager.h \ + vpsmem_surface_pool.c \ + vpsmem_surface_pool.h \ + x11.c \ + x11.h \ + x11image.c \ + x11image.h \ + x11input.c \ + x11_surface_pool.c \ + x11_surface_pool.h \ + x11types.h \ + xwindow.h \ + xwindow.c + +if GFX_GLX +libdirectfb_x11_la_SOURCES += \ + glx_surface_pool.c \ + glx_surface_pool.h \ + x11_surface_pool_bridge.c \ + x11_surface_pool_bridge.h +endif + +libdirectfb_x11_la_LIBADD = \ + $(top_builddir)/lib/direct/libdirect.la \ + $(top_builddir)/lib/fusion/libfusion.la \ + $(top_builddir)/src/libdirectfb.la + + +include $(top_srcdir)/rules/libobject.make + -- cgit