Fix distcheck for server

This commit is contained in:
Kevin E Martin 2005-07-28 23:28:34 +00:00
parent 3e4bf8a8f4
commit 86529c07d6
26 changed files with 176 additions and 62 deletions

View File

@ -17,7 +17,7 @@ INCLUDES = -I@MESA_SOURCE@/include \
# terribly gross hack. i need a shower now.
AM_CFLAGS = $(DIX_CFLAGS) -DXFree86Server
libX_la_SOURCES = xf86glx.c \
nodist_libX_la_SOURCES = xf86glx.c \
xf86glx_util.c \
xm_api.c \
xm_buffer.c \

View File

@ -12,4 +12,4 @@ INCLUDES = -I@MESA_SOURCE@/include \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libac_la_SOURCES = ac_context.c ac_import.c
nodist_libac_la_SOURCES = ac_context.c ac_import.c

View File

@ -12,4 +12,4 @@ INCLUDES = -I@MESA_SOURCE@/include \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libglapi_la_SOURCES = glapi.c glthread.c
nodist_libglapi_la_SOURCES = glapi.c glthread.c

View File

@ -12,7 +12,7 @@ INCLUDES = -I@MESA_SOURCE@/include \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libmain_la_SOURCES = accum.c \
nodist_libmain_la_SOURCES = accum.c \
api_arrayelt.c \
api_loopback.c \
api_noop.c \

View File

@ -12,7 +12,7 @@ INCLUDES = -I@MESA_SOURCE@/include \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libmath_la_SOURCES = m_debug_clip.c \
nodist_libmath_la_SOURCES = m_debug_clip.c \
m_debug_norm.c \
m_debug_xform.c \
m_eval.c \

View File

@ -16,7 +16,7 @@ INCLUDES = -I@MESA_SOURCE@/include \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libshader_la_SOURCES = arbfragparse.c \
nodist_libshader_la_SOURCES = arbfragparse.c \
arbprogparse.c \
arbprogram.c \
arbvertparse.c \

View File

@ -12,4 +12,4 @@ INCLUDES = -I@MESA_SOURCE@/include \
-I$(srcdir)/../../tnl \
-I$(srcdir)/../..
libgrammar_la_SOURCES = grammar_mesa.c
nodist_libgrammar_la_SOURCES = grammar_mesa.c

View File

@ -13,7 +13,7 @@ INCLUDES = -I@MESA_SOURCE@/include \
-I$(srcdir)/../../tnl \
-I$(srcdir)/../..
libslang_la_SOURCES = slang_assemble_assignment.c \
nodist_libslang_la_SOURCES = slang_assemble_assignment.c \
slang_assemble.c \
slang_assemble_conditional.c \
slang_assemble_constructor.c \

View File

@ -12,7 +12,7 @@ INCLUDES = -I@MESA_SOURCE@/include \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libswrast_la_SOURCES = s_aaline.c \
nodist_libswrast_la_SOURCES = s_aaline.c \
s_aatriangle.c \
s_accum.c \
s_alpha.c \

View File

@ -12,4 +12,4 @@ INCLUDES = -I@MESA_SOURCE@/include \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libss_la_SOURCES = ss_context.c ss_triangle.c
nodist_libss_la_SOURCES = ss_context.c ss_triangle.c

View File

@ -12,7 +12,7 @@ INCLUDES = -I@MESA_SOURCE@/include \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libtnl_la_SOURCES = t_array_api.c \
nodist_libtnl_la_SOURCES = t_array_api.c \
t_array_import.c \
t_context.c \
t_pipeline.c \

View File

@ -2,8 +2,6 @@ noinst_LTLIBRARIES = libXext.la
sdk_HEADERS = xvdix.h xvmcext.h
SUBDIRS = extmod
if MITSHM
MITSHM_SRCS = shm.c
endif
@ -32,14 +30,13 @@ if XEVIE
XEVIE_SRCS = xevie.c EVIstruct.h
endif
INCLUDES = -I$(srcdir)/extmod -I$(top_builddir)/hw/xfree86/dixmods/extmod
INCLUDES = -I$(top_srcdir)/hw/xfree86/dixmods/extmod
AM_CFLAGS = $(DIX_CFLAGS)
EXTRA_DIST = \
appgroup.h \
xvdisp.h \
xvmodproc.h
xvdisp.h
# dmx.c has a hard dependency on the dmx DDX
libXext_la_SOURCES = \

View File

@ -1,3 +0,0 @@
AM_CFLAGS = $(DIX_CFLAGS)
EXTRA_DIST = modinit.h

View File

@ -815,7 +815,6 @@ randr/Makefile
render/Makefile
xkb/Makefile
Xext/Makefile
Xext/extmod/Makefile
Xi/Makefile
xfixes/Makefile
hw/Makefile

View File

@ -24,3 +24,5 @@ SUBDIRS = \
$(XVFB_SUBDIRS) \
$(XNEST_SUBDIRS) \
$(DMX_SUBDIRS)
DIST_SUBDIRS = dmx xfree86 vfb xnest xwin

View File

@ -1,3 +1,5 @@
DIST_SUBDIRS = input config glxProxy
SUBDIRS = input config
bin_PROGRAMS = Xdmx
@ -8,31 +10,54 @@ endif
if GLX
SUBDIRS += glxProxy
GLX_LIBS = glxProxy/libglxproxy.a
GLX_SRCS = $(PANORAMIX_SRCS) dmx_glxvisuals.c
GLX_SRCS = $(PANORAMIX_SRCS) dmx_glxvisuals.c dmx_glxvisuals.h
GLX_INCS = -I$(top_srcdir)/hw/xfree86/dixmods/extmod
endif
Xdmx_SOURCES = dmxinit.c \
dmxscrinit.c \
dmxshadow.c \
dmxcursor.c \
dmxinput.c \
dmxdpms.c \
dmxgc.c \
dmxgcops.c \
dmxwindow.c \
dmxpixmap.c \
dmxfont.c \
dmxcmap.c \
dmxvisual.c \
dmxlog.c \
Xdmx_SOURCES = dmx.c \
dmxcb.c \
dmxprop.c \
dmxstat.c \
dmxsync.c \
dmxcb.h \
dmxclient.h \
dmxcmap.c \
dmxcmap.h \
dmx-config.h \
dmxcursor.c \
dmxcursor.h \
dmxdpms.c \
dmxdpms.h \
dmxextension.c \
dmxextension.h \
dmxfont.c \
dmxfont.h \
dmxgc.c \
dmxgc.h \
dmxgcops.c \
dmxgcops.h \
dmx.h \
dmxinit.c \
dmxinit.h \
dmxinput.c \
dmxinput.h \
dmxlog.c \
dmxlog.h \
dmxpict.c \
dmx.c \
dmxpict.h \
dmxpixmap.c \
dmxpixmap.h \
dmxprop.c \
dmxprop.h \
dmxscrinit.c \
dmxscrinit.h \
dmxshadow.c \
dmxshadow.h \
dmxstat.c \
dmxstat.h \
dmxsync.c \
dmxsync.h \
dmxvisual.c \
dmxvisual.h \
dmxwindow.c \
dmxwindow.h \
$(top_srcdir)/fb/fbcmap.c \
$(top_srcdir)/mi/miinitext.c \
$(GLX_SRCS)

View File

@ -1,6 +1,15 @@
noinst_LIBRARIES = libdmxconfig.a
LIBSRCS = parser.y scanner.l dmxparse.c dmxprint.c dmxcompat.c dmxconfig.c
LIBSRCS = parser.y \
scanner.l \
dmxparse.c \
dmxparse.h \
dmxprint.c \
dmxprint.h \
dmxcompat.c \
dmxcompat.h \
dmxconfig.c \
dmxconfig.h
parser.h: parser.c
scanner.c: scanner.l parser.h
@ -9,5 +18,5 @@ CLEANFILES = parser.c parser.h scanner.c
libdmxconfig_a_SOURCES = $(LIBSRCS)
AM_CFLAGS = -I.. -DHAVE_DMX_CONFIG_H @DMXMODULES_CFLAGS@
AM_CFLAGS = -I$(top_srcdir)/hw/dmx -DHAVE_DMX_CONFIG_H @DMXMODULES_CFLAGS@
AM_YFLAGS = -d

View File

@ -1,22 +1,38 @@
noinst_LIBRARIES = libglxproxy.a
libglxproxy_a_SOURCES = g_disptab.c \
libglxproxy_a_SOURCES = compsize.c \
g_disptab.c \
g_disptab.h \
global.c \
glxcmds.c \
glxcmdsswap.c \
glxcontext.h \
glxdrawable.h \
glxerror.h \
glxext.c \
glxext.h \
glxfbconfig.c \
glxfbconfig.h \
glxscreens.c \
glxscreens.h \
glxserver.h \
glxsingle.c \
glxsingle.h \
glxswap.c \
glxswap.h \
glxutil.c \
glxutil.h \
glxvendor.c \
glxvendor.h \
glxvisuals.c \
glxvisuals.h \
g_renderswap.c \
render2swap.c \
renderpixswap.c \
global.c \
glxcmdsswap.c \
compsize.c \
glxscreens.c \
glxvisuals.c \
glxsingle.c \
glxvendor.c \
glxfbconfig.c \
glxswap.c
unpack.h
AM_CFLAGS = -I.. -I$(top_srcdir)/include -I$(top_srcdir)/GL/include \
AM_CFLAGS = -I$(top_srcdir)/hw/dmx \
-I$(top_srcdir)/include \
-I$(top_srcdir)/GL/include \
-DHAVE_DMX_CONFIG_H \
@DMXMODULES_CFLAGS@

View File

@ -1,19 +1,57 @@
noinst_LIBRARIES = libdmxinput.a
RAWSRCS = lnx-keyboard.c lnx-ms.c lnx-ps2.c
USBSRCS = usb-keyboard.c usb-mouse.c usb-other.c usb-common.c
DRVSRCS = dmxdummy.c dmxbackend.c dmxconsole.c dmxcommon.c
DMXSRCS = dmxinputinit.c dmxarg.c dmxsigio.c dmxevents.c \
dmxxinput.c dmxmotion.c dmxeq.c dmxmap.c
RAWSRCS = lnx-keyboard.c \
lnx-keyboard.h \
lnx-ms.c \
lnx-ms.h \
lnx-ps2.c \
lnx-ps2.h
USBSRCS = usb-keyboard.c \
usb-keyboard.h \
usb-mouse.c \
usb-mouse.h \
usb-other.c \
usb-other.h \
usb-common.c \
usb-common.h \
usb-private.h
DRVSRCS = dmxdummy.c \
dmxdummy.h \
dmxbackend.c \
dmxbackend.h \
dmxconsole.c \
dmxconsole.h \
dmxcommon.c \
dmxcommon.h
DMXSRCS = dmxinputinit.c \
dmxinputinit.h \
dmxarg.c \
dmxarg.h \
dmxsigio.c \
dmxsigio.h \
dmxevents.c \
dmxevents.h \
dmxxinput.c \
dmxmotion.c \
dmxmotion.h \
dmxeq.c \
dmxeq.h \
dmxmap.c \
dmxmap.h
libdmxinput_a_SOURCES = ChkNotMaskEv.c \
ChkNotMaskEv.h \
$(RAWSRCS) \
$(USBSRCS) \
$(DRVSRCS) \
$(DMXSRCS) \
$(LIBSRCS)
AM_CFLAGS = -I.. -I../../xfree86/common \
AM_CFLAGS = -I$(top_srcdir)/hw/dmx \
-I$(top_srcdir)/hw/xfree86/common \
-DHAVE_DMX_CONFIG_H \
@DMXMODULES_CFLAGS@

View File

@ -2,6 +2,7 @@ bin_PROGRAMS = Xvfb
SRCS = InitInput.c \
InitOutput.c \
lk201kbd.h \
$(top_srcdir)/Xext/dpmsstubs.c \
$(top_srcdir)/Xi/stubs.c \
$(top_srcdir)/mi/miinitext.c \

View File

@ -6,6 +6,10 @@ SUBDIRS = common ddc dummylib i2c x86emu int10 fbdevhw os-support parser rac \
ramdac shadowfb vbe vgahw xaa xf1bpp xf4bpp xf8_16bpp \
xf8_32wid loader scanpci dixmods $(DRI_SUBDIR)
DIST_SUBDIRS = common ddc dummylib i2c x86emu int10 fbdevhw os-support \
parser rac ramdac shadowfb vbe vgahw xaa xf1bpp xf4bpp \
xf8_16bpp xf8_32wid loader scanpci dixmods dri
bin_PROGRAMS = Xorg
Xorg_SOURCES = dummy.c

View File

@ -2,9 +2,9 @@ sdk_HEADERS = dgaproc.h
module_LTLIBRARIES = libextmod.la
# DGA_SRCS = xf86dga.c xf86dga2.c
# DGA_SRCS = xf86dga.c xf86dga2.c dgaproc.h xf86dgaext.h
if XV
XV_SRCS = xvmod.c
XV_SRCS = xvmod.c xvmodproc.h
endif
AM_CFLAGS = @XORG_CFLAGS@
@ -20,7 +20,10 @@ INCLUDES = @XORG_INCS@ \
libextmod_la_LDFLAGS = -avoid-version
libextmod_la_LIBADD = $(top_builddir)/Xext/libXext.la
libextmod_la_SOURCES = modinit.c \
modinit.h \
$(DGA_SRCS) \
xf86misc.c \
xf86miscproc.h \
xf86vmode.c \
vidmodeproc.h \
$(XV_SRCS)

View File

@ -3,6 +3,7 @@ DRI_SUBDIRS=drm
endif
SUBDIRS = bus @XORG_OS_SUBDIR@ misc $(DRI_SUBDIRS)
DIST_SUBDIRS = bus drm misc linux solaris
sdk_HEADERS = xf86_OSproc.h xf86_OSlib.h xf86_ansic.h xf86_libc.h xf86drm.h \
xf86drmCompat.h assyntax.h xf86OSKbd.h xf86OSmouse.h

View File

@ -1,8 +1,26 @@
noinst_LIBRARIES = libx86emu.a
libx86emu_a_SOURCES = debug.c decode.c fpu.c ops2.c ops.c prim_ops.c sys.c validate.c
libx86emu_a_SOURCES = debug.c \
decode.c \
fpu.c \
ops2.c \
ops.c \
prim_ops.c \
sys.c \
validate.c \
x86emu.h
INCLUDES =
AM_CFLAGS = $(XORG_CFLAGS)
EXTRA_DIST = x86emu/debug.h \
x86emu/decode.h \
x86emu/fpu.h \
x86emu/fpu_regs.h \
x86emu/ops.h \
x86emu/prim_asm.h \
x86emu/prim_ops.h \
x86emu/regs.h \
x86emu/types.h \
x86emu/x86emui.h

View File

@ -36,6 +36,7 @@ SRCS = Args.c \
XNGC.h \
XNPixmap.h \
XNWindow.h \
xnest-config.h \
$(top_srcdir)/Xext/dpmsstubs.c \
$(top_srcdir)/Xi/stubs.c \
$(top_srcdir)/mi/miinitext.c \
@ -55,7 +56,9 @@ AM_CFLAGS = -DHAVE_XNEST_CONFIG_H \
-DXFree86Server \
$(XNESTMODULES_CFLAGS)
EXTRA_DIST = os2Stub.c
EXTRA_DIST = os2Stub.c \
icon \
screensaver
# -UDPMSExtension for miinitext? can't put into
# OS_DEFINES???

View File

@ -2,3 +2,4 @@ SUBDIRS = damage shadow layer
if COMPOSITE
SUBDIRS += cw
endif
DIST_SUBDIRS = damage shadow layer cw