2012-07-23 00:57:31 +00:00
|
|
|
#
|
2013-12-29 04:53:12 +00:00
|
|
|
# Copyright (C) 2013 Glyptodon LLC
|
2012-07-23 00:57:31 +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:
|
2012-07-23 00:57:31 +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.
|
2012-07-23 00:57:31 +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.
|
2012-07-23 00:57:31 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2013-06-12 05:41:23 +00:00
|
|
|
AM_CFLAGS = -Werror -Wall -pedantic @LIBGUAC_INCLUDE@
|
2012-07-23 00:57:31 +00:00
|
|
|
|
2012-08-27 21:44:17 +00:00
|
|
|
TESTS = test_libguac
|
|
|
|
check_PROGRAMS = test_libguac
|
2012-07-23 22:37:36 +00:00
|
|
|
|
2012-09-06 23:51:56 +00:00
|
|
|
noinst_HEADERS = \
|
|
|
|
client/client_suite.h \
|
|
|
|
protocol/suite.h \
|
|
|
|
util/util_suite.h
|
2012-08-27 21:41:23 +00:00
|
|
|
|
2012-08-27 21:44:17 +00:00
|
|
|
test_libguac_SOURCES = \
|
|
|
|
test_libguac.c \
|
2012-09-06 23:51:56 +00:00
|
|
|
client/client_suite.c \
|
|
|
|
client/buffer_pool.c \
|
|
|
|
client/layer_pool.c \
|
2012-07-23 22:37:36 +00:00
|
|
|
protocol/suite.c \
|
2013-09-27 22:51:45 +00:00
|
|
|
protocol/base64_decode.c \
|
2013-10-02 01:12:15 +00:00
|
|
|
protocol/instruction_parse.c \
|
2012-07-23 22:37:36 +00:00
|
|
|
protocol/instruction_read.c \
|
2012-08-27 21:44:17 +00:00
|
|
|
protocol/instruction_write.c \
|
2012-10-19 21:18:09 +00:00
|
|
|
protocol/nest_write.c \
|
2012-09-06 23:51:56 +00:00
|
|
|
util/util_suite.c \
|
2013-08-05 21:00:32 +00:00
|
|
|
util/guac_pool.c \
|
|
|
|
util/guac_unicode.c
|
2012-08-27 21:41:23 +00:00
|
|
|
|
2013-06-12 05:41:23 +00:00
|
|
|
test_libguac_LDADD = @LIBGUAC_LTLIB@ @CUNIT_LIBS@
|
2012-08-27 21:41:23 +00:00
|
|
|
|