]> git.llucax.com Git - software/eventxx.git/blob - test/Makefile
Fix a bug when the dispatcher destructor is working.
[software/eventxx.git] / test / Makefile
1
2 CXXFLAGS=-I.. -g -Wall
3 # Uncomment this if you have a fixed event_base_free().
4 # See http://www.mail-archive.com/libevent-users@monkey.org/msg00112.html
5 #CXXFLAGS+=-DEVENT_BASE_FREE_FIX
6 LDFLAGS=-levent
7
8 targets=bench test-eof test-time test-weof trivial c-way functor-way prio-test
9
10 all: $(targets)
11
12 clean:
13         $(RM) -fv *.o $(targets)
14
15 .PHONY: clean all
16