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 |
SUBDIRS = debugmodule libfreebobavc libstreaming |
---|
20 |
|
---|
21 |
INCLUDES = $(LIBSIGC_CFLAGS) $(LIBRAW1394_CFLAGS) $(LIBIEC61883_CFLAGS) \ |
---|
22 |
$(LIBAVC1394_CFLAGS) $(LIBLO_CFLAGS) $(LIBXML_CFLAGS) \ |
---|
23 |
-I$(top_srcdir) -I$(top_srcdir)/src |
---|
24 |
|
---|
25 |
lib_LTLIBRARIES = libfreebob.la |
---|
26 |
noinst_HEADERS = \ |
---|
27 |
configrom.h \ |
---|
28 |
csr1212.h \ |
---|
29 |
devicemanager.h \ |
---|
30 |
fbtypes.h \ |
---|
31 |
bebob_light/bebob_light_avdevice.h \ |
---|
32 |
bebob_light/bebob_light_avdevicesubunit.h \ |
---|
33 |
bebob_light/bebob_light_avplug.h \ |
---|
34 |
bounce/bounce_avdevice.h \ |
---|
35 |
motu/motu_avdevice.h |
---|
36 |
# bebob/bebob_avdevice.h \ |
---|
37 |
# bebob/bebob_avdevice_subunit.h \ |
---|
38 |
# bebob/bebob_avplug.h \ |
---|
39 |
# bebob/bebob_functionblock.h |
---|
40 |
|
---|
41 |
libfreebob_la_SOURCES = \ |
---|
42 |
configrom.cpp \ |
---|
43 |
csr1212.c \ |
---|
44 |
devicemanager.cpp \ |
---|
45 |
freebob.cpp \ |
---|
46 |
xmlparser.c \ |
---|
47 |
bebob_light/bebob_light_avdevice.cpp \ |
---|
48 |
bebob_light/bebob_light_avdevicesubunit.cpp \ |
---|
49 |
bebob_light/bebob_light_avplug.cpp \ |
---|
50 |
bounce/bounce_avdevice.cpp \ |
---|
51 |
motu/motu_avdevice.cpp |
---|
52 |
# bebob/bebob_avdevice.cpp \ |
---|
53 |
# bebob/bebob_avdevice_xml.cpp \ |
---|
54 |
# bebob/bebob_avdevice_subunit.cpp \ |
---|
55 |
# bebob/bebob_avplug.cpp \ |
---|
56 |
# bebob/bebob_avplug_xml.cpp \ |
---|
57 |
# bebob/bebob_functionblock.cpp |
---|
58 |
|
---|
59 |
libfreebob_la_LDFLAGS = -version-info $(LT_VERSION) -lpthread $(LIBSIGC_LIBS) \ |
---|
60 |
$(LIBRAW1394_LIBS) $(LIBIEC61883_LIBS) $(LIBAVC1394_LIBS) \ |
---|
61 |
$(LIBLO_LIBS) $(LIBXML_LIBS) -safe-temps |
---|
62 |
|
---|
63 |
libfreebob_la_LIBADD = debugmodule/libdebugmodule.la libfreebobavc/libfreebobavc.la \ |
---|
64 |
libstreaming/libstreaming.la |
---|
65 |
|
---|