Mercurial > hg > audiodb
view libtests/libtest.mk @ 423:b09d2eb1a2b2 api-inversion
Cheap hackery abounds.
Include an accumulator into the query_loop chain. Somewhat
surprisingly, very few tests fail, and those that do are due to
over-specific reporting requirements in the case of ties, so rewrite
those tests to be more permissive.
There are probably codepaths which ignore the accumulator completely;
they will still work, because the accumulator will return zero points
when it is asked to ->get_points().
author | mas01cr |
---|---|
date | Wed, 24 Dec 2008 10:55:08 +0000 |
parents | 64b2bf35d30b |
children | e072aa1611f5 |
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 $(ARCH_FLAGS) -laudioDB -L. -Wl,-rpath,. -o $@ $< clean: -rm $(LIBRARY_FULL) $(LIBRARY_VERS) $(LIBRARY)