summaryrefslogtreecommitdiff
path: root/Xext
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2005-07-01 20:29:53 +0000
committerDaniel Stone <daniel@fooishbar.org>2005-07-01 20:29:53 +0000
commitded56b1a74e6b3e4c48054b7e142d924b19e6104 (patch)
treec2c9fb687494f559cb19e317290e272849c391ae /Xext
parentaabb868920658c9d3979dc194c6bd9702171f101 (diff)
Adding initial build system.
Diffstat (limited to 'Xext')
-rw-r--r--Xext/Makefile.am72
-rw-r--r--Xext/extmod/Makefile.am1
2 files changed, 73 insertions, 0 deletions
diff --git a/Xext/Makefile.am b/Xext/Makefile.am
new file mode 100644
index 000000000..4ae2a7d36
--- /dev/null
+++ b/Xext/Makefile.am
@@ -0,0 +1,72 @@
+noinst_LTLIBRARIES = libXext.la
+
+sdk_HEADERS = dgaproc.h xvdix.h xvmcext.h
+
+SUBDIRS = extmod
+
+if MITSHM
+MITSHM_SRCS = shm.c
+endif
+
+if XV
+XV_SRCS = xvmain.c xvdisp.c xvmc.c xvdix.h xvmcext.h
+endif
+
+if RES
+RES_SRCS = xres.c
+endif
+
+if SCREENSAVER
+SCREENSAVER_SRCS = saver.c
+endif
+
+if XCSECURITY
+XCSECURITY_SRCS = security.c
+endif
+
+if XINERAMA
+PANORAMIX_SRCS = panoramiX.c panoramiX.h panoramiXh.h panoramiXsrv.h panoramiXprocs.c panoramiXSwap.c
+endif
+
+if XEVIE
+XEVIE_SRCS = xevie.c EVIstruct.h
+endif
+
+AM_CFLAGS = -I$(srcdir)/extmod
+
+EXTRA_DIST = \
+ dgaproc.h \
+ vidmodeproc.h \
+ xf86dgaext.h \
+ xf86miscproc.h \
+ appgroup.h \
+ xvdisp.h \
+ xvmodproc.h
+
+# dmx.c has a hard dependency on the dmx DDX
+libXext_la_SOURCES = \
+ bigreq.c \
+ mitmisc.c \
+ shape.c \
+ sleepuntil.c \
+ sleepuntil.h \
+ sync.c \
+ xtest.c \
+ xtest1di.c \
+ xtest1dd.c \
+ xtest1dd.h \
+ xcmisc.c \
+ dpms.c \
+ dpmsproc.h \
+ xf86bigfont.c \
+ xf86dga.c \
+ xf86dgaext.h \
+ xf86dga2.c \
+ $(MITSHM_SRCS) \
+ $(XV_SRCS) \
+ $(RES_SRCS) \
+ $(SCREENSAVER_SRCS) \
+ $(PANORAMIX_SRCS) \
+ $(XCSECURITY_SRCS) \
+ $(XEVIE_SRCS) \
+ extmod/modinit.c
diff --git a/Xext/extmod/Makefile.am b/Xext/extmod/Makefile.am
new file mode 100644
index 000000000..3044f0372
--- /dev/null
+++ b/Xext/extmod/Makefile.am
@@ -0,0 +1 @@
+EXTRA_DIST = modinit.h