2011-03-02 09:19:24 +00:00
|
|
|
#
|
2015-07-08 00:02:13 +00:00
|
|
|
# Copyright (C) 2015 Glyptodon LLC
|
2011-03-02 09:19:24 +00:00
|
|
|
#
|
2013-12-29 04:53:12 +00:00
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
2011-03-02 09:19:24 +00:00
|
|
|
#
|
2013-12-29 04:53:12 +00:00
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
2011-03-02 09:19:24 +00:00
|
|
|
#
|
2013-12-29 04:53:12 +00:00
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
# THE SOFTWARE.
|
2011-03-02 09:19:24 +00:00
|
|
|
#
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2013-06-04 23:29:31 +00:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2013-06-04 23:29:31 +00:00
|
|
|
# Subprojects
|
2013-06-05 19:05:39 +00:00
|
|
|
DIST_SUBDIRS = \
|
|
|
|
src/libguac \
|
2014-03-26 18:59:33 +00:00
|
|
|
src/common \
|
2015-07-08 00:02:13 +00:00
|
|
|
src/common-ssh \
|
2014-05-05 22:35:37 +00:00
|
|
|
src/terminal \
|
2014-01-07 00:49:16 +00:00
|
|
|
src/guacd \
|
|
|
|
src/protocols/rdp \
|
|
|
|
src/protocols/ssh \
|
2014-05-07 18:32:19 +00:00
|
|
|
src/protocols/telnet \
|
2014-01-07 00:49:16 +00:00
|
|
|
src/protocols/vnc \
|
2013-06-06 16:35:27 +00:00
|
|
|
tests
|
2013-06-05 19:05:39 +00:00
|
|
|
|
|
|
|
SUBDIRS = \
|
|
|
|
src/libguac \
|
2016-03-01 05:38:51 +00:00
|
|
|
src/common \
|
2013-06-06 16:35:27 +00:00
|
|
|
tests
|
2013-06-05 19:05:39 +00:00
|
|
|
|
2015-07-08 00:02:13 +00:00
|
|
|
if ENABLE_COMMON_SSH
|
2016-03-01 05:48:22 +00:00
|
|
|
SUBDIRS += src/common-ssh
|
2015-07-08 00:02:13 +00:00
|
|
|
endif
|
|
|
|
|
2014-05-05 22:35:37 +00:00
|
|
|
if ENABLE_TERMINAL
|
2016-03-01 05:35:32 +00:00
|
|
|
#SUBDIRS += src/terminal
|
2014-05-05 22:35:37 +00:00
|
|
|
endif
|
|
|
|
|
2013-06-05 19:05:39 +00:00
|
|
|
if ENABLE_RDP
|
2016-03-01 05:35:32 +00:00
|
|
|
#SUBDIRS += src/protocols/rdp
|
2013-06-05 19:05:39 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
if ENABLE_SSH
|
2016-03-01 05:35:32 +00:00
|
|
|
#SUBDIRS += src/protocols/ssh
|
2013-06-05 19:05:39 +00:00
|
|
|
endif
|
|
|
|
|
2014-05-07 18:32:19 +00:00
|
|
|
if ENABLE_TELNET
|
2016-03-01 05:35:32 +00:00
|
|
|
#SUBDIRS += src/protocols/telnet
|
2014-05-07 18:32:19 +00:00
|
|
|
endif
|
|
|
|
|
2013-06-06 16:35:27 +00:00
|
|
|
if ENABLE_VNC
|
2016-03-01 05:35:32 +00:00
|
|
|
#SUBDIRS += src/protocols/vnc
|
2013-06-05 19:05:39 +00:00
|
|
|
endif
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2015-07-08 22:16:40 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
LICENSE \
|
|
|
|
bin/guacctl \
|
|
|
|
doc/Doxyfile
|
2013-06-05 21:33:43 +00:00
|
|
|
|