1# sample/include.am for libevent
2# Copyright 2000-2007 Niels Provos
3# Copyright 2007-2012 Niels Provos and Nick Mathewson
4#
5# See LICENSE for copying information.
6
7SAMPLES = \
8	sample/dns-example				\
9	sample/event-read-fifo			\
10	sample/hello-world				\
11	sample/http-server				\
12	sample/http-connect				\
13	sample/signal-test				\
14	sample/time-test
15
16if OPENSSL
17SAMPLES += sample/le-proxy
18sample_le_proxy_SOURCES = sample/le-proxy.c
19sample_le_proxy_LDADD = libevent.la libevent_openssl.la $(OPENSSL_LIBS) $(OPENSSL_LIBADD)
20sample_le_proxy_CPPFLAGS = $(AM_CPPFLAGS) $(OPENSSL_INCS)
21
22SAMPLES += sample/https-client
23sample_https_client_SOURCES = \
24	sample/https-client.c \
25	sample/hostcheck.c \
26	sample/openssl_hostname_validation.c
27sample_https_client_LDADD = libevent.la libevent_openssl.la $(OPENSSL_LIBS) $(OPENSSL_LIBADD)
28if BUILD_WIN32
29sample_https_client_LDADD += -lcrypt32
30endif
31sample_https_client_CPPFLAGS = $(AM_CPPFLAGS) $(OPENSSL_INCS)
32noinst_HEADERS += \
33	sample/hostcheck.h \
34	sample/openssl_hostname_validation.h
35endif
36
37if BUILD_SAMPLES
38noinst_PROGRAMS += $(SAMPLES)
39endif
40
41$(SAMPLES) : libevent.la
42
43sample_event_read_fifo_SOURCES = sample/event-read-fifo.c
44sample_event_read_fifo_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
45sample_time_test_SOURCES = sample/time-test.c
46sample_time_test_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
47sample_signal_test_SOURCES = sample/signal-test.c
48sample_signal_test_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
49sample_dns_example_SOURCES = sample/dns-example.c
50sample_dns_example_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
51sample_hello_world_SOURCES = sample/hello-world.c
52sample_hello_world_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
53sample_http_server_SOURCES = sample/http-server.c
54sample_http_server_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
55sample_http_connect_SOURCES = sample/http-connect.c
56sample_http_connect_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
57