]> git.llucax.com Git - software/eventxx.git/blobdiff - test/Makefile
Fix memory leak warning format.
[software/eventxx.git] / test / Makefile
index 3b45f263e062b3c0283cbaf6bd9eedbc9cebea14..2969e11b6d98e5f4aa1aae0838bbc4f2db4685c7 100644 (file)
@@ -1,11 +1,17 @@
 
 CXXFLAGS=-I.. -g -Wall
+
 # Uncomment this if you have a fixed event_base_free().
 # See http://www.mail-archive.com/libevent-users@monkey.org/msg00112.html
-#CXXFLAGS+=-DEVENT_BASE_FREE_FIX
+#CXXFLAGS+=-DEVENTXX_EVENT_BASE_FREE_FIX
+
+# Don't warn me about memory leaks
+CXXFLAGS+=-DEVENTXX_NO_WARNING
+
 LDFLAGS=-levent
 
-targets=bench test-eof test-time test-weof trivial c-way functor-way prio-test
+targets=bench test-eof test-time test-weof trivial c-way functor-way \
+       wrapped-functor-way prio-test mixed-way
 
 all: $(targets)