| 1 |
# Makefile.am - Makefile template
|
| 2 |
# Copyright (C) 2005 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 |
noinst_LTLIBRARIES = libfreebobavc.la
|
| 19 |
|
| 20 |
libfreebobavc_la_SOURCES = \
|
| 21 |
avc_connect.cpp \
|
| 22 |
avc_connect.h \
|
| 23 |
avc_definitions.cpp \
|
| 24 |
avc_definitions.h \
|
| 25 |
avc_extended_cmd_generic.cpp \
|
| 26 |
avc_extended_cmd_generic.h \
|
| 27 |
avc_extended_plug_info.cpp \
|
| 28 |
avc_extended_plug_info.h \
|
| 29 |
avc_extended_stream_format.cpp \
|
| 30 |
avc_extended_stream_format.h \
|
| 31 |
avc_extended_subunit_info.h \
|
| 32 |
avc_extended_subunit_info.cpp \
|
| 33 |
avc_generic.cpp \
|
| 34 |
avc_generic.h \
|
| 35 |
avc_plug_info.cpp \
|
| 36 |
avc_plug_info.h \
|
| 37 |
avc_signal_source.cpp \
|
| 38 |
avc_signal_source.h \
|
| 39 |
avc_subunit_info.cpp \
|
| 40 |
avc_subunit_info.h \
|
| 41 |
avc_unit_info.cpp \
|
| 42 |
avc_unit_info.h \
|
| 43 |
ieee1394service.cpp \
|
| 44 |
ieee1394service.h \
|
| 45 |
serialize.cpp \
|
| 46 |
serialize.h
|
| 47 |
|
| 48 |
INCLUDES = $(LIBRAW1394_CFLAGS) $(LIBIEC61883_CFLAGS) $(LIBAVC1394_CFLAGS) \
|
| 49 |
-I$(top_srcdir)/src
|
| 50 |
libfreebobavc_la_LIBADD = $(LIBRAW1394_LIBS) $(LIBIEC61883_LIBS) \
|
| 51 |
$(LIBAVC1394_LIBS)
|
| 52 |
|
| 53 |
MAINTAINERCLEANFILES = Makefile.in
|