7a9dcfa8fc
big thanks to Martynas Venckus for his work on regression tests "go ahead!" jasper@
22 lines
675 B
Plaintext
22 lines
675 B
Plaintext
$OpenBSD: patch-tests_Makefile_in,v 1.3 2006/12/17 12:12:59 ajacoutot Exp $
|
|
--- tests/Makefile.in.orig Sun Oct 29 02:05:36 2006
|
|
+++ tests/Makefile.in Sat Dec 9 20:02:01 2006
|
|
@@ -14,14 +14,14 @@ override CPPFLAGS += -Wall -I../src @CPP
|
|
all: run_tests
|
|
check: run_tests
|
|
|
|
-LIBS = @LIBS@ ../src/libaudacity.a
|
|
+LIBS = @LIBS@ ../src/libaudacity_tests.a
|
|
|
|
TESTS = \
|
|
SimpleBlockFileTest \
|
|
SequenceTest \
|
|
|
|
-$(TESTS): %: %.cpp ../src/libaudacity.a
|
|
- $(CXX) -o $@ $< $(CXXFLAGS) $(CPPFLAGS) $(LIBS)
|
|
+$(TESTS): %: %.cpp ../src/libaudacity_tests.a
|
|
+ $(CXX) -o $@ $< $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) $(LIBS)
|
|
|
|
run_tests: $(TESTS)
|
|
tests='$(TESTS)'; for test in $$tests ; do \
|