From 6c96e0c9e4b3f1e8dfa5dcf7366bb838dc0724ec Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Thu, 14 Jul 2005 01:36:58 +0000 Subject: [PATCH] loader support for extmod --- hw/xfree86/dixmods/extmod/Makefile.am | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 hw/xfree86/dixmods/extmod/Makefile.am diff --git a/hw/xfree86/dixmods/extmod/Makefile.am b/hw/xfree86/dixmods/extmod/Makefile.am new file mode 100644 index 000000000..95fa0505b --- /dev/null +++ b/hw/xfree86/dixmods/extmod/Makefile.am @@ -0,0 +1,23 @@ +sdk_HEADERS = dgaproc.h + +module_LTLIBRARIES = libextmod.la + +# DGA_SRCS = xf86dga.c xf86dga2.c +if XV +XV_SRCS = xvmod.c +endif + +# yes, this is a cheesy hack. +AM_CFLAGS = $(XORG_CFLAGS) -include xorg-config.h +INCLUDES = $(XORG_INCS) -I$(top_srcdir)/afb -I$(top_srcdir)/mfb \ + -I$(top_srcdir)/cfb -I$(top_srcdir)/dbe -I$(srcdir)/../loader \ + -I$(top_srcdir)/miext/layer -I$(top_srcdir)/miext/shadow + +libextmod_la_LDFLAGS = -avoid-version +libextmod_la_LIBADD = $(top_srcdir)/Xext/libXext.la +libextmod_la_SOURCES = \ + modinit.c \ + $(DGA_SRCS) \ + xf86misc.c \ + xf86vmode.c \ + $(XV_SRCS)