diff options
Diffstat (limited to 'xorg-server/hw/xgl/egl/Makefile.am')
-rw-r--r-- | xorg-server/hw/xgl/egl/Makefile.am | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/xorg-server/hw/xgl/egl/Makefile.am b/xorg-server/hw/xgl/egl/Makefile.am new file mode 100644 index 000000000..8c4e9af75 --- /dev/null +++ b/xorg-server/hw/xgl/egl/Makefile.am @@ -0,0 +1,44 @@ +if XGL +XGL_MODULE_DIRS = module +endif + +DIST_SUBDIRS = module + +SUBDIRS = \ + . \ + $(XGL_MODULE_DIRS) + +AM_CFLAGS = \ + $(DIX_CFLAGS) \ + -DHAVE_XGL_CONFIG_H \ + -DHAVE_DIX_CONFIG_H \ + $(XEGLMODULES_CFLAGS) + +noinst_LTLIBRARIES = libxegl.la + +libxegl_la_SOURCES = \ + xegl.h \ + xegl.c \ + xeglinput.c \ + kkeymap.h \ + kinput.c \ + evdev.c + +XEGL_LIBS = \ + @XEGL_LIBS@ \ + libxegl.la \ + ../libxgl.a \ + $XSERVER_LIBS + +Xegl_LDFLAGS = -export-dynamic +Xegl_SOURCES = \ + xeglinit.c \ + $(top_srcdir)/mi/miinitext.c \ + $(top_srcdir)/Xext/dpmsstubs.c \ + $(top_srcdir)/Xi/stubs.c \ + $(top_srcdir)/fb/fbcmap.c + +Xegl_DEPENDENCIES = $(XEGL_LIBS) +Xegl_LDADD = $(XEGL_LIBS) $(XSERVER_SYS_LIBS) $(XEGL_SYS_LIBS) + +bin_PROGRAMS = Xegl |