]> git.llucax.com Git - software/eventxx.git/blob - test/Makefile
Documentation fixes about EVENTXX_BASE_FREE_FIX.
[software/eventxx.git] / test / Makefile
1
2 CXXFLAGS=-I.. -g -Wall
3
4 # Uncomment this if you have a fixed event_base_free().
5 # See http://www.mail-archive.com/libevent-users@monkey.org/msg00112.html
6 #CXXFLAGS+=-DEVENTXX_BASE_FREE_FIX
7
8 # Don't warn me about memory leaks
9 CXXFLAGS+=-DEVENTXX_NO_WARNING
10
11 LDFLAGS=-levent
12
13 targets=bench test-eof test-time test-weof trivial c-way functor-way \
14         wrapped-functor-way prio-test mixed-way
15
16 all: $(targets)
17
18 clean:
19         $(RM) -fv *.o $(targets)
20
21 .PHONY: clean all
22