finalcut/src/test/Makefile.am

23 lines
562 B
Makefile
Raw Normal View History

2018-02-25 21:42:18 +01:00
#----------------------------------------------------------------------
# Makefile.am - The Final Cut unit tests programs
#----------------------------------------------------------------------
AM_LDFLAGS = -L$(top_builddir)/src/.libs -lfinal $(CPPUNIT_LIBS)
AM_CPPFLAGS = -I$(top_srcdir)/include -Wall -Werror
2018-02-27 00:55:51 +01:00
if CPPUNIT_TEST
2018-02-25 21:42:18 +01:00
noinst_PROGRAMS = \
fstring_test
fstring_test_SOURCES = fstring-test.cpp
TESTS = fstring_test
check_PROGRAMS = $(TESTS)
2018-02-27 00:55:51 +01:00
endif
2018-02-25 21:42:18 +01:00
test: check
clean-local:
-find . \( -name "*.gcda" -o -name "*.gcno" -o -name "*.gcov" \) -delete