2011-03-02 09:19:24 +00:00
|
|
|
#
|
2016-03-25 20:03:33 +00:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
2011-03-02 09:19:24 +00:00
|
|
|
#
|
2016-03-25 20:03:33 +00:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-02 09:19:24 +00:00
|
|
|
#
|
2016-03-25 20:03:33 +00:00
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
# under the License.
|
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 \
|
2016-02-26 23:04:30 +00:00
|
|
|
src/guacenc \
|
2016-12-25 09:13:40 +00:00
|
|
|
src/pulse \
|
2014-01-07 00:49:16 +00:00
|
|
|
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
|
|
|
|
2016-09-09 17:44:16 +00:00
|
|
|
SUBDIRS = \
|
|
|
|
src/libguac \
|
|
|
|
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:41:56 +00:00
|
|
|
SUBDIRS += src/terminal
|
2014-05-05 22:35:37 +00:00
|
|
|
endif
|
|
|
|
|
2016-12-25 09:13:40 +00:00
|
|
|
if ENABLE_PULSE
|
|
|
|
SUBDIRS += src/pulse
|
|
|
|
endif
|
|
|
|
|
2013-06-05 19:05:39 +00:00
|
|
|
if ENABLE_RDP
|
2016-03-01 05:50:00 +00:00
|
|
|
SUBDIRS += src/protocols/rdp
|
2013-06-05 19:05:39 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
if ENABLE_SSH
|
2016-03-01 05:51:42 +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-15 02:47:36 +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:42:57 +00:00
|
|
|
SUBDIRS += src/protocols/vnc
|
2013-06-05 19:05:39 +00:00
|
|
|
endif
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2016-03-09 23:43:57 +00:00
|
|
|
if ENABLE_GUACD
|
|
|
|
SUBDIRS += src/guacd
|
|
|
|
endif
|
|
|
|
|
|
|
|
if ENABLE_GUACENC
|
|
|
|
SUBDIRS += src/guacenc
|
|
|
|
endif
|
|
|
|
|
2016-12-18 05:15:13 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
.dockerignore \
|
|
|
|
CONTRIBUTING \
|
|
|
|
Dockerfile \
|
|
|
|
LICENSE \
|
|
|
|
NOTICE \
|
|
|
|
bin/guacctl \
|
|
|
|
doc/Doxyfile \
|
|
|
|
src/guacd-docker
|
2013-06-05 21:33:43 +00:00
|
|
|
|