guacamole-spice-protocol/Makefile.am

54 lines
1.6 KiB
Makefile
Raw Normal View History

2011-03-02 09:19:24 +00:00
#
# Copyright (C) 2013 Glyptodon LLC
2011-03-02 09:19:24 +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
#
# 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
#
# 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
ACLOCAL_AMFLAGS = -I m4
2010-12-08 21:14:04 +00:00
# Subprojects
DIST_SUBDIRS = \
src/libguac \
2014-01-07 00:49:16 +00:00
src/guacd \
src/protocols/rdp \
src/protocols/ssh \
src/protocols/vnc \
tests
SUBDIRS = \
src/libguac \
2014-01-07 00:18:54 +00:00
src/common \
2014-01-07 00:49:16 +00:00
src/guacd \
tests
if ENABLE_RDP
SUBDIRS += src/protocols/rdp
endif
if ENABLE_SSH
SUBDIRS += src/protocols/ssh
endif
if ENABLE_VNC
SUBDIRS += src/protocols/vnc
endif
2010-12-08 21:14:04 +00:00
2014-03-26 18:37:49 +00:00
EXTRA_DIST = LICENSE doc/Doxyfile bin/guacctl
2013-06-05 21:33:43 +00:00