root/branches/libfreebob-2.0/src/Makefile.am

Revision 336, 4.9 kB (checked in by pieterpalmers, 17 years ago)

- Merged the developments on trunk since branch-off:

branch occurred at rev 194
svn merge -r 194:HEAD https://svn.sourceforge.net/svnroot/freebob/trunk/libfreebob

- Modified libfreebobavc to use the messagebuffer for debug info.
- This should compile and run

  • 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 # Copyright (C) 2006 by Pieter Palmers.
4 #
5 # This file is part of FreeBoB.
6 #
7 # FreeBoB is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 # FreeBoB 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 # You should have received a copy of the GNU General Public License
16 # along with FreeBoB; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19 INCLUDES =                                              \
20         $(LIBRAW1394_CFLAGS) $(LIBIEC61883_CFLAGS)      \
21         $(LIBAVC1394_CFLAGS) $(LIBXML_CFLAGS)           \
22         -I$(top_srcdir) -I$(top_srcdir)/src
23
24 lib_LTLIBRARIES = libfreebob.la
25 noinst_HEADERS =                                \
26         configrom.h                                     \
27         csr1212.h                                       \
28         devicemanager.h                                 \
29         fbtypes.h                                       \
30         bounce/bounce_avdevice.h                        \
31         motu/motu_avdevice.h                            \
32         rme/rme_avdevice.h
33
34 libfreebob_la_SOURCES =                                 \
35         iavdevice.h                                     \
36         configrom.cpp                                   \
37         csr1212.c                                       \
38         devicemanager.cpp                               \
39         freebob.cpp                                     \
40         xmlparser.c                                     \
41         threads.h                                       \
42         bebob/bebob_avdevice.h                          \
43         bebob/bebob_avdevice.cpp                        \
44         bebob/bebob_avdevice_xml.cpp                    \
45         bebob/bebob_avdevice_subunit.h                  \
46         bebob/bebob_avdevice_subunit.cpp                \
47         bebob/bebob_avplug.h                            \
48         bebob/bebob_avplug.cpp                          \
49         bebob/bebob_avplug_xml.cpp                      \
50         bebob/bebob_functionblock.h                     \
51         bebob/bebob_functionblock.cpp                   \
52         bebob/bebob_dl_mgr.h                            \
53         bebob/bebob_dl_mgr.cpp                          \
54         bebob/bebob_dl_codes.h                          \
55         bebob/bebob_dl_codes.cpp                        \
56         bebob/bebob_dl_bcd.h                            \
57         bebob/bebob_dl_bcd.cpp                          \
58         motu/motu_avdevice.cpp                          \
59         motu/motu_avdevice.h                            \
60         rme/rme_avdevice.cpp                            \
61         rme/rme_avdevice.h                              \
62         bounce/bounce_avdevice.h                        \
63         bounce/bounce_avdevice.cpp                      \
64         maudio/maudio_avdevice.h                        \
65         maudio/maudio_avdevice.cpp                      \
66         libfreebobavc/avc_connect.cpp                   \
67         libfreebobavc/avc_definitions.cpp               \
68         libfreebobavc/avc_extended_cmd_generic.cpp      \
69         libfreebobavc/avc_extended_plug_info.cpp        \
70         libfreebobavc/avc_extended_stream_format.cpp    \
71         libfreebobavc/avc_extended_subunit_info.cpp     \
72         libfreebobavc/avc_function_block.cpp            \
73         libfreebobavc/avc_function_block.h              \
74         libfreebobavc/avc_generic.cpp                   \
75         libfreebobavc/avc_plug_info.cpp                 \
76         libfreebobavc/avc_signal_source.cpp             \
77         libfreebobavc/avc_subunit_info.cpp              \
78         libfreebobavc/avc_unit_info.cpp                 \
79         libfreebobavc/ieee1394service.cpp               \
80         libfreebobavc/serialize.cpp                     \
81         libfreebobavc/avc_connect.h                     \
82         libfreebobavc/avc_definitions.h                 \
83         libfreebobavc/avc_extended_cmd_generic.h        \
84         libfreebobavc/avc_extended_plug_info.h          \
85         libfreebobavc/avc_extended_stream_format.h      \
86         libfreebobavc/avc_extended_subunit_info.h       \
87         libfreebobavc/avc_generic.h                     \
88         libfreebobavc/avc_plug_info.h                   \
89         libfreebobavc/avc_signal_source.h               \
90         libfreebobavc/avc_subunit_info.h                \
91         libfreebobavc/avc_unit_info.h                   \
92         libfreebobavc/ieee1394service.h                 \
93         libfreebobavc/serialize.h                       \
94         debugmodule/debugmodule.h                       \
95         debugmodule/debugmodule.cpp                     \
96         libstreaming/cip.c      \
97         libstreaming/freebob_streaming.cpp      \
98         libstreaming/IsoHandler.cpp     \
99         libstreaming/IsoHandlerManager.cpp      \
100         libstreaming/IsoStream.cpp      \
101         libstreaming/PacketBuffer.cpp   \
102         libstreaming/PortManager.cpp    \
103         libstreaming/Port.cpp   \
104         libstreaming/StreamProcessor.cpp        \
105         libstreaming/StreamProcessorManager.cpp \
106         libstreaming/AmdtpPortInfo.cpp  \
107         libstreaming/AmdtpPort.cpp      \
108         libstreaming/AmdtpStreamProcessor.cpp   \
109         libstreaming/ringbuffer.c       \
110         libstreaming/streamstatistics.cpp       \
111         libstreaming/MotuStreamProcessor.cpp    \
112         libstreaming/MotuPort.cpp       \
113         libstreaming/MotuPortInfo.cpp \
114         libutil/DelayLockedLoop.h       \
115         libutil/Atomic.h        \
116         libutil/PosixThread.h   \
117         libutil/Thread.h        \
118         libutil/DelayLockedLoop.cpp     \
119         libutil/PosixThread.cpp
120
121 libfreebob_la_LDFLAGS =                                 \
122         -version-info $(LT_VERSION) $(LIBRAW1394_LIBS)  \
123         $(LIBIEC61883_LIBS) $(LIBAVC1394_LIBS)          \
124         $(LIBXML_LIBS) -lpthread
125
126 nobase_dist_pkgdata_DATA =                              \
127         maudio/refdesign.xml                            \
128         maudio/fw410.xml
129
130 bin_PROGRAMS = freebob_downloader freebob_sync
131
132 freebob_downloader_SOURCES =    \
133         freebob-downloader.cpp
134 freebob_downloader_LDADD =      \
135         libfreebob.la           \
136         $(LIBRAW1394_LIBS)      \
137         $(LIBIEC61883_LIBS)     \
138         $(LIBAVC1394_LIBS)      \
139         -lpthread
140
141 freebob_sync_SOURCES =    \
142         freebob-sync.cpp
143 freebob_sync_LDADD =      \
144         libfreebob.la           \
145         $(LIBRAW1394_LIBS)      \
146         $(LIBIEC61883_LIBS)     \
147         $(LIBAVC1394_LIBS)      \
148         -lpthread
149
150 noinst_PROGRAMS = test-dll test-debugmodule
151
152 test_dll_SOURCES = libutil/test-dll.cpp
153 test_dll_LDADD = libfreebob.la
154
155 test_debugmodule_SOURCES = debugmodule/test_debugmodule.cpp
156 test_debugmodule_LDADD = libfreebob.la
Note: See TracBrowser for help on using the browser.