root/trunk/libffado/tests/Makefile.am

Revision 464, 2.7 kB (checked in by ppalmers, 17 years ago)

BeBoB stream start utility

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 # Makefile.am
2 #
3 # Copyright (C) 2005-2007 by Daniel Wagner.
4 # Copyright (C) 2005-2007 by Pieter Palmers.
5 #
6 # This file is part of FFADO.
7 # FFADO = Free Firewire (pro-)audio drivers for linux
8 #
9 # FFADO is based upon FreeBoB.
10 #
11 # FFADO is free software.
12 #
13 # you can redistribute and/or modify the applications
14 # under the terms of the GNU General Public License
15 # version 2, as published by the Free Software Foundation
16 #
17 # FFADO is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 # GNU (Lesser) General Public License for more details.
21 #
22 # You should have received a copy of the GNU (Lesser) General Public License
23 # along with FFADO; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25
26 #SUBDIRS=streaming
27
28 INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src $(LIBXML_CFLAGS) \
29         $(LIBAVC1394_CFLAGS) $(LIBXMLCPP_CFLAGS)
30
31 noinst_PROGRAMS =
32
33 if BUILD_TESTS
34 noinst_PROGRAMS += test-ffado test-extplugcmd test-fw410 \
35              test-volume test-mixer test-cycletimer test-sytmonitor \
36              test-timestampedbuffer test-ieee1394service test-streamdump
37 endif
38
39 noinst_HEADERS =
40
41 test_ffado_SOURCES = test-ffado.cpp
42 test_ffado_LDADD   = $(top_builddir)/src/libffado.la \
43         $(LIBXML_LIBS) $(LIBAVC1394_LIBS) $(LIBIEC61883_LIBS)
44
45 test_extplugcmd_SOURCES = test-extplugcmd.cpp
46 test_extplugcmd_LDADD = $(top_builddir)/src/libffado.la \
47         $(LIBAVC1394_LIBS)
48
49 test_volume_SOURCES = test-volume.cpp
50 test_volume_LDADD = $(top_builddir)/src/libffado.la \
51         $(LIBAVC1394_LIBS)
52
53 test_mixer_SOURCES = test-mixer.cpp
54 test_mixer_LDADD = $(top_builddir)/src/libffado.la \
55         $(LIBAVC1394_LIBS)
56
57 test_fw410_SOURCES = test-fw410.cpp
58 test_fw410_LDADD   = $(LIBAVC1394_LIBS) $(LIBIEC61883_LIBS) -lrom1394
59
60 test_streamdump_SOURCES = test-streamdump.cpp
61 test_streamdump_LDADD   = $(LIBAVC1394_LIBS) $(LIBIEC61883_LIBS) -lrom1394
62
63 test_ieee1394service_SOURCES = test-ieee1394service.cpp
64 test_ieee1394service_LDADD   = $(top_builddir)/src/libffado.la \
65                                    $(LIBAVC1394_LIBS) $(LIBIEC61883_LIBS) -lrom1394
66
67 #TESTS_ENVIRONMENT
68 TEST = test-ffado
69
70 test_cycletimer_LDADD = $(top_builddir)/src/libffado.la $(LIBIEC61883_LIBS) \
71         $(LIBRAW1394_LIBS) $(LIBAVC1394_LIBS)
72 test_cycletimer_SOURCES = test-cycletimer.cpp
73
74 test_sytmonitor_LDADD = $(top_builddir)/src/libffado.la $(LIBIEC61883_LIBS) \
75         $(LIBRAW1394_LIBS) $(LIBAVC1394_LIBS)
76 test_sytmonitor_SOURCES = test-sytmonitor.cpp SytMonitor.cpp \
77                               SytMonitor.h
78
79 test_timestampedbuffer_LDADD = $(top_builddir)/src/libffado.la $(LIBIEC61883_LIBS) \
80         $(LIBRAW1394_LIBS) $(LIBAVC1394_LIBS)
81 test_timestampedbuffer_SOURCES = test-timestampedbuffer.cpp
Note: See TracBrowser for help on using the browser.