root/branches/freebob-syt-experiments/src/Makefile.am

Revision 188, 2.2 kB (checked in by wagi, 18 years ago)

2006-05-04 Daniel Wagner <wagi@monom.org>

  • configure.ac: Version bumped to 0.8.0
  • Discovering code ported stable 0.2.0 version
    to head and activated for default discovering.
  • 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 SUBDIRS = debugmodule libfreebobavc libfreebobstreaming
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
27 libfreebob_la_SOURCES =                                 \
28         configrom.h                                     \
29         configrom.cpp                                   \
30         csr1212.h                                       \
31         csr1212.c                                       \
32         devicemanager.h                                 \
33         devicemanager.cpp                               \
34         fbtypes.h                                       \
35         freebob.cpp                                     \
36         xmlparser.c                                     \
37         bebob/bebob_avdevice.h                          \
38         bebob/bebob_avdevice.cpp                        \
39         bebob/bebob_avdevice_xml.cpp                    \
40         bebob/bebob_avdevice_subunit.h                  \
41         bebob/bebob_avdevice_subunit.cpp                \
42         bebob/bebob_avplug.h                            \
43         bebob/bebob_avplug.cpp                          \
44         bebob/bebob_avplug_xml.cpp                      \
45         bebob/bebob_functionblock.h                     \
46         bebob/bebob_functionblock.cpp                   \
47         bebob_light/bebob_light_avdevice.h              \
48         bebob_light/bebob_light_avdevice.cpp            \
49         bebob_light/bebob_light_avdevicesubunit.h       \
50         bebob_light/bebob_light_avdevicesubunit.cpp     \
51         bebob_light/bebob_light_avplug.h                \
52         bebob_light/bebob_light_avplug.cpp              \
53         bounce/bounce_avdevice.h                        \
54         bounce/bounce_avdevice.cpp
55
56 libfreebob_la_LDFLAGS = -version-info $(LT_VERSION) -lpthread $(LIBSIGC_LIBS) \
57         $(LIBRAW1394_LIBS) $(LIBIEC61883_LIBS) $(LIBAVC1394_LIBS) \
58         $(LIBLO_LIBS) $(LIBXML_LIBS) -safe-temps
59
60 libfreebob_la_LIBADD = debugmodule/libdebugmodule.la libfreebobavc/libfreebobavc.la \
61         libfreebobstreaming/libfreebobstreaming.la
62
63
Note: See TracBrowser for help on using the browser.