1## Makefile.am -- an automake template for Makefile.in file 2## Copyright (C) 2019 Sane Developers. 3## 4## This file is part of the "Sane" build infra-structure. See 5## included LICENSE file for license information. 6 7TEST_LDADD = \ 8 ../../../sanei/libsanei.la \ 9 ../../../sanei/sanei_usb.lo \ 10 ../../../sanei/sanei_magic.lo \ 11 ../../../lib/liblib.la \ 12 ../../../backend/libgenesys.la \ 13 ../../../backend/sane_strstatus.lo \ 14 $(MATH_LIB) $(TIFF_LIBS) $(USB_LIBS) $(XML_LIBS) $(PTHREAD_LIBS) 15 16check_PROGRAMS = genesys_unit_tests genesys_session_config_tests 17TESTS = genesys_unit_tests 18 19AM_CPPFLAGS += -I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include $(USB_CFLAGS) \ 20 -DBACKEND_NAME=genesys -DTESTSUITE_BACKEND_GENESYS_SRCDIR=$(srcdir) 21 22genesys_unit_tests_SOURCES = tests.cpp tests.h \ 23 minigtest.cpp minigtest.h tests_printers.h \ 24 tests_calibration.cpp \ 25 tests_image.cpp \ 26 tests_image_pipeline.cpp \ 27 tests_motor.cpp \ 28 tests_row_buffer.cpp \ 29 tests_utilities.cpp 30 31genesys_unit_tests_LDADD = $(TEST_LDADD) 32 33genesys_session_config_tests_SOURCES = session_config_test.cpp 34 35genesys_session_config_tests_LDADD = $(TEST_LDADD) 36