diff options
author | Kevin E Martin <kem@kem.org> | 2005-10-17 07:18:59 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-10-17 07:18:59 +0000 |
commit | 1859c62607d567aa05334df1662f7249c983f793 (patch) | |
tree | a5905411c6a734e9d968e172324cd3430100e1fd /Xext/Makefile.am | |
parent | ccfe9e7e9b49cbbf7c50fbf1a5c33178f27f79eb (diff) |
include/dix-config.h.in Add support for more extensions
Add missing files to EXTRA_DIST
Diffstat (limited to 'Xext/Makefile.am')
-rw-r--r-- | Xext/Makefile.am | 39 |
1 files changed, 31 insertions, 8 deletions
diff --git a/Xext/Makefile.am b/Xext/Makefile.am index 66cfbe4a7..aee6fb84c 100644 --- a/Xext/Makefile.am +++ b/Xext/Makefile.am @@ -11,7 +11,7 @@ MITSHM_SRCS = shm.c endif if XV -XV_SRCS = xvmain.c xvdisp.c xvmc.c xvdix.h xvmcext.h +XV_SRCS = xvmain.c xvdisp.c xvmc.c xvdix.h xvmcext.h xvdisp.h endif if RES @@ -34,20 +34,39 @@ PANORAMIX_SRCS = panoramiX.c panoramiX.h panoramiXh.h panoramiXsrv.h panoramiXpr endif if XEVIE -XEVIE_SRCS = xevie.c EVIstruct.h +XEVIE_SRCS = xevie.c endif if XPRINT XPRINT_SRCS = xprint.c endif +if APPGROUP +APPGROUP_SRCS = appgroup.c appgroup.h +endif + +if CUP +CUP_SRCS = cup.c +endif + +if EVI +EVI_SRCS = EVI.c sampleEVI.c EVIstruct.h +endif + +if MULTIBUFFER +MULTIBUFFER_SRCS = mbuf.c +endif +EXTRA_MULTIBUFFER_SRCS = mbufbf.c mbufpx.c + +if FONTCACHE +FONTCACHE_SRCS = fontcache.c +endif + EXTRA_DIST = \ - appgroup.h \ - xvdisp.h \ README.xtest1-ddx \ - SecurityPolicy + SecurityPolicy \ + $(EXTRA_MULTIBUFFER_SRCS) -# dmx.c has a hard dependency on the dmx DDX libXext_la_SOURCES = \ bigreq.c \ mitmisc.c \ @@ -70,5 +89,9 @@ libXext_la_SOURCES = \ $(PANORAMIX_SRCS) \ $(XCSECURITY_SRCS) \ $(XEVIE_SRCS) \ - $(XPRINT_SRCS) - + $(XPRINT_SRCS) \ + $(APPGROUP_SRCS) \ + $(CUP_SRCS) \ + $(EVI_SRCS) \ + $(MULTIBUFFER_SRCS) \ + $(FONTCACHE_SRCS) |