Edit

kc3-lang/libevent/sample/Makefile.am

Branch :

  • Show log

    Commit

  • Author : Nick Mathewson
    Date : 2011-09-25 07:39:00
    Hash : 7f82382a
    Message : Use _SOURCES, not _sources, in sample/Makefile.am Found by Adrian Chadd

  • sample/Makefile.am
  • 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
    
    noinst_PROGRAMS = event-test time-test signal-test dns-example hello-world http-server
    
    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
    
    if OPENSSL
    noinst_PROGRAMS += le-proxy
    le_proxy_SOURCES = le-proxy.c
    le_proxy_LDADD = $(LDADD) ../libevent_openssl.la -lssl -lcrypto
    endif
    
    verify:
    
    DISTCLEANFILES = *~