1 |
# Makefile.am - Makefile template |
---|
2 |
# Copyright (C) 2005 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 = -I$(top_srcdir) -I$(top_srcdir)/src $(LIBIEC61883_CFLAGS) |
---|
20 |
|
---|
21 |
noinst_PROGRAMS = teststreaming teststreaming2 teststreaming3 testmidistreaming1 |
---|
22 |
noinst_HEADERS = debugtools.h |
---|
23 |
|
---|
24 |
teststreaming_SOURCES = teststreaming.c debugtools.c |
---|
25 |
teststreaming_LDADD = @top_builddir@src/libfreebob.la \ |
---|
26 |
$(LIBAVC1394_LIBS) $(LIBIEC61883_LIBS) |
---|
27 |
|
---|
28 |
teststreaming2_SOURCES = teststreaming2.c debugtools.c |
---|
29 |
teststreaming2_LDADD = @top_builddir@src/libfreebob.la \ |
---|
30 |
$(LIBAVC1394_LIBS) $(LIBIEC61883_LIBS) |
---|
31 |
|
---|
32 |
teststreaming3_SOURCES = teststreaming3.c debugtools.c |
---|
33 |
teststreaming3_LDADD = @top_builddir@src/libfreebob.la \ |
---|
34 |
$(LIBAVC1394_LIBS) $(LIBIEC61883_LIBS) |
---|
35 |
|
---|
36 |
testmidistreaming1_SOURCES = testmidistreaming1.c debugtools.c |
---|
37 |
testmidistreaming1_LDADD = @top_builddir@src/libfreebob.la -lasound \ |
---|
38 |
$(LIBAVC1394_LIBS) $(LIBIEC61883_LIBS) |
---|