Mercurial > hg > audiodb
view libtests/libtest.mk @ 497:9d8aee621afb api-inversion
More libtests fixups.
Include audiodb_close() calls everywhere (whoops).
Add the facility to run tests under valgrind. Unfortunately the
error-exitcode flag doesn't actually cause an error exit if the only
thing wrong is memory leaks, but it will if there are actual memory
errors, which is a start.
author | mas01cr |
---|---|
date | Sat, 10 Jan 2009 16:07:43 +0000 |
parents | c291e9201a3c |
children |
line wrap: on
line source
EXECUTABLE=audioDB SOVERSION=0 MINORVERSION=0 LIBRARY_FULL=lib$(EXECUTABLE).so.$(SOVERSION).$(MINORVERSION) LIBRARY_VERS=lib$(EXECUTABLE).so.$(SOVERSION) LIBRARY=lib$(EXECUTABLE).so ARCH_FLAGS= ifeq ($(shell uname),Darwin) override LIBRARY_FULL=lib$(EXECUTABLE).$(SOVERSION).$(MINORVERSION).dylib override LIBRARY_VERS=lib$(EXECUTABLE).$(SOVERSION).dylib override LIBRARY=lib$(EXECUTABLE).dylib ifeq ($(shell sysctl -n hw.optional.x86_64),1) override ARCH_FLAGS+=-arch x86_64 endif endif all: $(LIBRARY_FULL) $(LIBRARY_VERS) $(LIBRARY) test1 $(LIBRARY_FULL): -ln -s ../../$(LIBRARY_FULL) $@ $(LIBRARY_VERS): -ln -s ../../$(LIBRARY_FULL) $@ $(LIBRARY): $(LIBRARY_VERS) -ln -s $< $@ test1: prog1.c ../test_utils_lib.h ../../audioDB_API.h gcc -g -std=c99 -Wall -Werror $(ARCH_FLAGS) -I.. -I../.. -laudioDB -L. -Wl,-rpath,. -o $@ $< clean: -rm $(LIBRARY_FULL) $(LIBRARY_VERS) $(LIBRARY)