Edit

kc3-lang/libevent/test/Makefile.am

Branch :

  • Show log

    Commit

  • Author : Niels Provos
    Date : 2006-01-22 05:08:50
    Hash : a3bb4a03
    Message : I often need some very simple HTTP functionality, so this is a first stab at integrating something really simple with HTTP. The interface is still evolving as I start messing with it. Not all the interfaces are properly exported yet. I am also trying to figure out how to intelligently hide the details about the different structures from users, so that that things can be changed around later. svn:r196

  • test/Makefile.am
  • AUTOMAKE_OPTIONS = foreign no-dependencies
    
    LDADD = ../libevent.la
    CPPFPLAGS = -I.. 
    CFLAGS = -I../compat @CFLAGS@
    
    EXTRA_DIST = regress.rpc
    
    noinst_PROGRAMS = test-init test-eof test-weof test-time regress bench
    
    BUILT_SOURCES = regress.gen.c regress.gen.h
    test_init_SOURCES = test-init.c
    test_eof_SOURCES = test-eof.c
    test_weof_SOURCES = test-weof.c
    test_time_SOURCES = test-time.c
    regress_SOURCES = regress.c regress.h regress_http.c \
    	regress.gen.c regress.gen.h
    bench_SOURCES = bench.c
    
    regress.gen.c regress.gen.h: regress.rpc
    	../event_rpcgen.py regress.rpc
    
    DISTCLEANFILES = *~
    CLEANFILES = regress.gen.h regress.gen.c
    
    test: test-init test-eof test-weof test-time regress
    
    verify: test
    	@./test.sh
    
    bench test-init test-eof test-weof test-time: ../libevent.la