]> git.llucax.com Git - software/eventxx.git/blob - test/Makefile
Restore the TREEVIEW for doxygen.
[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 \
9         prio-test mixed-way
10
11 all: $(targets)
12
13 clean:
14         $(RM) -fv *.o $(targets)
15
16 .PHONY: clean all
17