1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
INCLUDES = \
-I$(top_srcdir) \
$(XML_CFLAGS) \
$(GLIB_CFLAGS)
LIBS = $(top_builddir)/libsoup/libsoup-$(SOUP_API_VERSION).la
noinst_PROGRAMS = \
auth-test \
date \
dict \
dns \
get \
getbug \
revserver \
simple-httpd \
simple-proxy \
uri-parsing \
$(XMLRPC_TESTS)
auth_test_SOURCES = auth-test.c apache-wrapper.c apache-wrapper.h
date_SOURCES = date.c
dict_SOURCES = dict.c
dns_SOURCES = dns.c
get_SOURCES = get.c
getbug_SOURCES = getbug.c
revserver_SOURCES = revserver.c
simple_httpd_SOURCES = simple-httpd.c
simple_proxy_SOURCES = simple-proxy.c
uri_parsing_SOURCES = uri-parsing.c
xmlrpc_test_SOURCES = xmlrpc-test.c apache-wrapper.c apache-wrapper.h
if HAVE_APACHE
APACHE_TESTS = auth-test
endif
if HAVE_XMLRPC_EPI_PHP
XMLRPC_TESTS = xmlrpc-test
endif
TESTS = date uri-parsing $(APACHE_TESTS) $(XMLRPC_TESTS)
EXTRA_DIST = \
libsoup.supp \
test-cert.pem \
test-key.pem \
htdigest \
htpasswd \
httpd.conf.in \
xmlrpc-server.php
|