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
|
|
|
#
|
2018-02-09 00:05:33 +00:00
|
|
|
# NOTE: Parts of this file (Makefile.am) are automatically transcluded verbatim
|
|
|
|
# into Makefile.in. Though the build system (GNU Autotools) automatically adds
|
|
|
|
# its own license boilerplate to the generated Makefile.in, that boilerplate
|
|
|
|
# does not apply to the transcluded portions of Makefile.am which are licensed
|
|
|
|
# to you by the ASF under the Apache License, Version 2.0, as described above.
|
|
|
|
#
|
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
|
2018-09-26 16:38:22 +00:00
|
|
|
DIST_SUBDIRS = \
|
|
|
|
src/libguac \
|
|
|
|
src/common \
|
|
|
|
src/common-ssh \
|
|
|
|
src/terminal \
|
|
|
|
src/guacd \
|
|
|
|
src/guacenc \
|
|
|
|
src/guaclog \
|
|
|
|
src/pulse \
|
|
|
|
src/protocols/kubernetes \
|
|
|
|
src/protocols/rdp \
|
|
|
|
src/protocols/ssh \
|
|
|
|
src/protocols/telnet \
|
2022-07-23 22:42:34 +00:00
|
|
|
src/protocols/tn5250 \
|
2018-11-13 21:26:43 +00:00
|
|
|
src/protocols/vnc
|
2013-06-05 19:05:39 +00:00
|
|
|
|
2016-09-09 17:44:16 +00:00
|
|
|
SUBDIRS = \
|
|
|
|
src/libguac \
|
2018-11-13 21:26:43 +00:00
|
|
|
src/common
|
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
|
|
|
|
|
2018-09-10 03:03:40 +00:00
|
|
|
if ENABLE_KUBERNETES
|
|
|
|
SUBDIRS += src/protocols/kubernetes
|
|
|
|
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
|
|
|
|
|
2022-07-23 22:42:34 +00:00
|
|
|
if ENABLE_TN5250
|
|
|
|
SUBDIRS += src/protocols/tn5250
|
|
|
|
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
|
|
|
|
|
2017-11-26 23:44:03 +00:00
|
|
|
if ENABLE_GUACLOG
|
|
|
|
SUBDIRS += src/guaclog
|
|
|
|
endif
|
|
|
|
|
2022-02-23 19:16:43 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
.dockerignore \
|
|
|
|
CONTRIBUTING \
|
|
|
|
Dockerfile \
|
|
|
|
LICENSE \
|
|
|
|
NOTICE \
|
|
|
|
bin/guacctl \
|
|
|
|
doc/libguac/Doxyfile.in \
|
|
|
|
doc/libguac-terminal/Doxyfile.in \
|
|
|
|
src/guacd-docker \
|
2018-11-13 21:24:23 +00:00
|
|
|
util/generate-test-runner.pl
|
2013-06-05 21:33:43 +00:00
|
|
|
|