mirror of
https://github.com/libevent/libevent.git
synced 2025-01-09 00:56:20 +08:00
ec347b9225
This change means that all required include files are in event2, and all files not in event2/* are optional.
23 lines
576 B
Makefile
23 lines
576 B
Makefile
AUTOMAKE_OPTIONS = foreign no-dependencies
|
|
|
|
LDADD = ../libevent.la
|
|
AM_CFLAGS = -I$(top_srcdir) -I$(top_srcdir)/compat -I$(top_srcdir)/include -I../include
|
|
|
|
noinst_PROGRAMS = event-test time-test signal-test dns-example hello-world
|
|
|
|
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
|
|
|
|
if OPENSSL
|
|
noinst_PROGRAMS += le-proxy
|
|
le_proxy_sources = le-proxy.c
|
|
le_proxy_LDADD = $(LDADD) ../libevent_openssl.la -lcrypto -lssl
|
|
endif
|
|
|
|
verify:
|
|
|
|
DISTCLEANFILES = *~
|