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

Revision 222, 1.8 kB (checked in by pieterpalmers, 18 years ago)

- makefile rework: move headers in noinst, makes life easier with kdevelop

  • 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 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 noinst_HEADERS =                                \
21                 avc_connect.h                           \
22                 avc_definitions.h                       \
23                 avc_extended_cmd_generic.h              \
24                 avc_extended_plug_info.h                \
25                 avc_extended_stream_format.h            \
26                 avc_extended_subunit_info.h             \
27                 avc_generic.h                           \
28                 avc_plug_info.h                         \
29                 avc_signal_source.h                     \
30                 avc_subunit_info.h                      \
31                 avc_unit_info.h                         \
32                 ieee1394service.h                       \
33                 serialize.h
34
35 libfreebobavc_la_SOURCES =                              \
36                 avc_connect.cpp                         \
37                 avc_definitions.cpp                     \
38                 avc_extended_cmd_generic.cpp            \
39                 avc_extended_plug_info.cpp              \
40                 avc_extended_stream_format.cpp          \
41                 avc_extended_subunit_info.cpp           \
42                 avc_generic.cpp                         \
43                 avc_plug_info.cpp                       \
44                 avc_signal_source.cpp                   \
45                 avc_subunit_info.cpp                    \
46                 avc_unit_info.cpp                       \
47                 ieee1394service.cpp                     \
48                 serialize.cpp                           
49
50 INCLUDES = $(LIBRAW1394_CFLAGS) $(LIBIEC61883_CFLAGS) $(LIBAVC1394_CFLAGS) \
51         -I$(top_srcdir)/src
52 libfreebobavc_la_LIBADD  = $(LIBRAW1394_LIBS) $(LIBIEC61883_LIBS) \
53         $(LIBAVC1394_LIBS)
54
55 MAINTAINERCLEANFILES = Makefile.in
Note: See TracBrowser for help on using the browser.