libevent/sample/Makefile.am

30 lines
834 B
Makefile
Raw Normal View History

2012-02-10 17:29:53 -05:00
# sample/Makefile.am for libevent
# Copyright 2000-2007 Niels Provos
# Copyright 2007-2012 Niels Provos and Nick Mathewson
#
# See LICENSE for copying information.
2002-04-09 17:42:15 +00:00
AUTOMAKE_OPTIONS = foreign no-dependencies
LDADD = $(LIBEVENT_GC_SECTIONS) ../libevent.la
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/compat -I$(top_srcdir)/include -I../include
2002-04-09 17:42:15 +00:00
noinst_PROGRAMS = event-test time-test signal-test dns-example hello-world http-server
2002-04-09 17:42:15 +00:00
event_test_SOURCES = event-test.c
time_test_SOURCES = time-test.c
signal_test_SOURCES = signal-test.c
dns_example_SOURCES = dns-example.c
hello_world_SOURCES = hello-world.c
http_server_SOURCES = http-server.c
2002-04-09 17:42:15 +00:00
if OPENSSL
noinst_PROGRAMS += le-proxy
le_proxy_SOURCES = le-proxy.c
le_proxy_LDADD = $(LDADD) ../libevent_openssl.la -lssl -lcrypto ${OPENSSL_LDFLAGS}
endif
2004-12-01 19:59:00 +00:00
verify:
2002-04-09 17:42:15 +00:00
DISTCLEANFILES = *~