1# $Id: Makefile.am 4759 2008-06-19 19:02:27Z vbuzuev $
2
3# DYMO LabelWriter Drivers
4# Copyright (C) 2008 Sanford L.P.
5
6# This program is free software; you can redistribute it and/or
7# modify it under the terms of the GNU General Public License
8# as published by the Free Software Foundation; either version 2
9# of the License, or (at your option) any later version.
10
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20TESTS = tests
21
22check_PROGRAMS = tests
23
24tests_SOURCES = \
25    ../../common/tests/testsMain.cpp \
26    ../../common/tests/MOCK_PrintEnvironment.cpp \
27    ../../common/tests/MOCK_PrintEnvironment.h \
28    ../../common/tests/TestCommon.cpp \
29    ../../common/tests/TestCommon.h \
30    ../../common/DummyLanguageMonitor.cpp \
31    ../../common/DummyLanguageMonitor.h \
32    ../LabelWriterLanguageMonitor.cpp \
33    ../LabelWriterLanguageMonitor.h \
34    ../LabelWriterDriver.cpp \
35    ../CupsFilterLabelWriter.cpp \
36    ../CupsFilterLabelWriter.h \
37    TestLabelWriterDriver.cpp \
38    TestLabelWriterDriver.h  \
39    TestLabelWriterFilter.cpp \
40    TestLabelWriterFilter.h \
41    TestLabelWriterLanguageMonitor.cpp \
42    TestLabelWriterLanguageMonitor.h \
43    MOCK_LWLMPrintEnvironment.cpp \
44    MOCK_LWLMPrintEnvironment.h
45
46
47tests_LDADD = $(CUPS_LIBS) -lcppunit -ldl
48
49INCLUDES = -I../../common -I../../common/tests
50
51#
52#  End of $Id: Makefile.am 4759 2008-06-19 19:02:27Z vbuzuev $
53#
54