From ceff16cad6a9191d634b83b2914096e7564924e7 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Thu, 8 Jul 2010 19:22:39 +0200 Subject: Make distcheck work --- client/Makefile.am | 15 ++++++++++++--- client/gui/Makefile.am | 21 +++++++++++++++++++++ client/windows/Makefile.am | 39 +++++++++++++++++++++++++++++++++++++++ client/x11/Makefile.am | 1 + 4 files changed, 73 insertions(+), 3 deletions(-) create mode 100644 client/gui/Makefile.am create mode 100644 client/windows/Makefile.am (limited to 'client') diff --git a/client/Makefile.am b/client/Makefile.am index d5602b52..185518a9 100644 --- a/client/Makefile.am +++ b/client/Makefile.am @@ -1,7 +1,7 @@ NULL = -SUBDIRS = . $(red_target) -DIST_SUBDIRS = x11 #windows +SUBDIRS = . $(red_target) gui +DIST_SUBDIRS = x11 windows gui spice_built_sources = generated_demarshallers.cpp generated_marshallers.cpp generated_demarshallers1.cpp generated_marshallers1.cpp @@ -81,10 +81,12 @@ RED_COMMON_SRCS = \ menu.h \ mjpeg_decoder.h \ mjpeg_decoder.cpp \ + event_sources.h \ pixels_source.h \ platform.h \ playback_channel.cpp \ process_loop.cpp \ + process_loop.h \ quic.cpp \ read_write_mutex.h \ record_channel.cpp \ @@ -119,8 +121,15 @@ RED_COMMON_SRCS = \ zlib_decoder.h \ $(NULL) +GDI_FILES = \ + gdi_canvas.cpp \ + red_gdi_canvas.cpp \ + red_gdi_canvas.h \ + red_pixmap_gdi.h \ + $(NULL) + MAINTAINERCLEANFILES = $(spice_built_sources) -EXTRA_DIST = $(RED_COMMON_SRCS) $(spice_built_sources) $(GL_SRCS) +EXTRA_DIST = $(RED_COMMON_SRCS) $(spice_built_sources) $(GL_SRCS) $(GDI_FILES) BUILT_SOURCES = $(spice_built_sources) diff --git a/client/gui/Makefile.am b/client/gui/Makefile.am new file mode 100644 index 00000000..e1204c92 --- /dev/null +++ b/client/gui/Makefile.am @@ -0,0 +1,21 @@ +NULL = + +EXTRA_DIST = \ + commonv2c.ttf.c \ + commonwealth-10.font.c \ + dejavu_sans-10.font.c \ + dejavu_sans.ttf.c \ + gui.cpp \ + gui.h \ + resource_provider.cpp \ + resource_provider.h \ + softrenderer.cpp \ + softrenderer.h \ + softtexture.cpp \ + softtexture.h \ + taharez_look.imageset.c \ + taharez_look.looknfeel.c \ + taharez_look.scheme.c \ + taharez_look.tga.c \ + $(NULL) + diff --git a/client/windows/Makefile.am b/client/windows/Makefile.am new file mode 100644 index 00000000..a9babd6f --- /dev/null +++ b/client/windows/Makefile.am @@ -0,0 +1,39 @@ +NULL = + +EXTRA_DIST = \ + atomic_count.h \ + event_sources_p.cpp \ + event_sources_p.h \ + generate1.bat \ + generate.bat \ + main.cpp \ + my_getopt.cpp \ + named_pipe.cpp \ + named_pipe.h \ + pixels_source.cpp \ + pixels_source_p.h \ + platform.cpp \ + platform_utils.cpp \ + platform_utils.h \ + playback.cpp \ + playback.h \ + record.cpp \ + record.h \ + redc.rc \ + redc.sln \ + redc.vcproj \ + red_drawable.cpp \ + red_pixmap.cpp \ + red_pixmap_gdi.cpp \ + red_pixmap_sw.cpp \ + red_window.cpp \ + red_window_p.h \ + resource.h \ + spicec.exe.manifest \ + spice.ico \ + static_title.bmp \ + stdint.h \ + sticky_alt.bmp \ + win_platform.h \ + $(NULL) + diff --git a/client/x11/Makefile.am b/client/x11/Makefile.am index ce4813b0..dc83f58c 100644 --- a/client/x11/Makefile.am +++ b/client/x11/Makefile.am @@ -150,6 +150,7 @@ bin_PROGRAMS = spicec spicec_SOURCES = \ atomic_count.h \ event_sources_p.cpp \ + event_sources_p.h \ main.cpp \ named_pipe.h \ named_pipe.cpp \ -- cgit