Distribute all files except git and github specific data
It is better to distribute a few useless file than not to distribute needed files.
This commit is contained in:
parent
0f6d1aabc2
commit
c21b9a78f4
21
Makefile.am
21
Makefile.am
@ -1,8 +1,25 @@
|
|||||||
ACLOCAL_AMFLAGS = -I m4
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
AM_DISTCHECK_CONFIGURE_FLAGS = --without-systemdsystemunitdir
|
AM_DISTCHECK_CONFIGURE_FLAGS = --without-systemdsystemunitdir
|
||||||
|
|
||||||
EXTRA_DIST = bootstrap COPYING coding_style.md design.txt faq-compile.txt \
|
EXTRA_DIST = \
|
||||||
faq-general.txt file-loc.txt install.txt m4 readme.txt
|
COPYING \
|
||||||
|
astyle_config.as \
|
||||||
|
bootstrap \
|
||||||
|
coding_style.md \
|
||||||
|
description-pak \
|
||||||
|
design.txt \
|
||||||
|
faq-compile.txt \
|
||||||
|
faq-general.txt \
|
||||||
|
file-loc.txt \
|
||||||
|
fontdump \
|
||||||
|
install.txt \
|
||||||
|
m4 \
|
||||||
|
postinstall-pak \
|
||||||
|
readme.txt \
|
||||||
|
tcutils \
|
||||||
|
tests \
|
||||||
|
vrplayer \
|
||||||
|
xorg
|
||||||
|
|
||||||
if XRDP_NEUTRINORDP
|
if XRDP_NEUTRINORDP
|
||||||
NEUTRINORDPDIR = neutrinordp
|
NEUTRINORDPDIR = neutrinordp
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
EXTRA_DIST = \
|
||||||
|
dump-keymaps.sh \
|
||||||
|
readme.txt
|
||||||
|
|
||||||
AM_CFLAGS = $(X_CFLAGS)
|
AM_CFLAGS = $(X_CFLAGS)
|
||||||
|
|
||||||
bin_PROGRAMS = \
|
bin_PROGRAMS = \
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
|
keymap-names.txt \
|
||||||
xrdp.sh \
|
xrdp.sh \
|
||||||
xrdp-sesman.service \
|
xrdp-sesman.service \
|
||||||
xrdp.service
|
xrdp.service
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
EXTRA_DIST = \
|
||||||
|
xrdp_surface.c
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
||||||
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
||||||
|
@ -17,6 +17,7 @@ module_LTLIBRARIES = \
|
|||||||
|
|
||||||
libxrdpneutrinordp_la_SOURCES = \
|
libxrdpneutrinordp_la_SOURCES = \
|
||||||
xrdp-color.c \
|
xrdp-color.c \
|
||||||
|
xrdp-color.h \
|
||||||
xrdp-neutrinordp.c \
|
xrdp-neutrinordp.c \
|
||||||
xrdp-neutrinordp.h
|
xrdp-neutrinordp.h
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
EXTRA_DIST = \
|
||||||
|
Doxyfile
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
||||||
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
EXTRA_DIST = \
|
||||||
|
clipboard-notes.txt \
|
||||||
|
pcsc \
|
||||||
|
pulse \
|
||||||
|
wave-format-server.txt
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
||||||
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
EXTRA_DIST = \
|
||||||
|
czech.txt \
|
||||||
|
rdp-scan-codes.txt \
|
||||||
|
xrdpwin.c
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
||||||
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
EXTRA_DIST = \
|
||||||
|
simple.c \
|
||||||
|
vrplayer.c \
|
||||||
|
vrplayer.mk
|
||||||
|
|
||||||
module_LTLIBRARIES = \
|
module_LTLIBRARIES = \
|
||||||
libxrdpapi.la
|
libxrdpapi.la
|
||||||
|
|
||||||
|
@ -3,4 +3,5 @@ module_LTLIBRARIES = \
|
|||||||
|
|
||||||
libxrdpvr_la_SOURCES = \
|
libxrdpvr_la_SOURCES = \
|
||||||
xrdpvr.c \
|
xrdpvr.c \
|
||||||
xrdpvr.h
|
xrdpvr.h \
|
||||||
|
xrdpvr_internal.h
|
||||||
|
Loading…
Reference in New Issue
Block a user