root/branches/streaming-rework/tests/Makefile.am

Revision 435, 2.5 kB (checked in by pieterpalmers, 17 years ago)

src/devicemanager:
- start OSC server for the device manager

src/devicemanager,
src/iavdevice,
src/libieee1394/configrom:
- inherit from OscNode? to become Osc'able

src/bounce,
src/libstreaming/AmdtpStreamProcessor,
src/libstreaming/AmdtpSlaveStreamProcessor:
- fixed bounce device implementation, now working

src/bebob:
- fixed midi bug

General:
- removed 'intermediate XML'
- removed obsolete tests
- removed obsolete files
- removed obsolete API calls

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