~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to lib-src/libsndfile/examples/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Process this file with automake to produce Makefile.in
2
 
 
3
 
bin_PROGRAMS = sndfile-info sndfile-play sndfile-convert
4
 
 
5
 
noinst_PROGRAMS = make_sine sfprocess list_formats cooledit-fixer generate
6
 
 
7
 
# This is the BeOS version of sndfile-play. It needs to be compiled with the C++
8
 
# compiler.
9
 
EXTRA_DIST = sndfile-play-beos.cpp
10
 
 
11
 
OS_SPECIFIC_CFLAGS = @OS_SPECIFIC_CFLAGS@
12
 
OS_SPECIFIC_LINKS = @OS_SPECIFIC_LINKS@
13
 
 
14
 
SNDFILEDIR =../src
15
 
INCLUDES = -I$(srcdir)/$(SNDFILEDIR) $(OS_SPECIFIC_CFLAGS)
16
 
 
17
 
sndfile_info_SOURCES = sndfile-info.c 
18
 
sndfile_info_LDADD = $(SNDFILEDIR)/libsndfile.la
19
 
 
20
 
sndfile_play_SOURCES = sndfile-play.c 
21
 
sndfile_play_LDADD = $(SNDFILEDIR)/libsndfile.la $(OS_SPECIFIC_LINKS) $(ALSA_LIBS)
22
 
 
23
 
sndfile_convert_SOURCES = sndfile-convert.c 
24
 
sndfile_convert_LDADD = $(SNDFILEDIR)/libsndfile.la
25
 
 
26
 
make_sine_SOURCES = make_sine.c 
27
 
make_sine_LDADD = $(SNDFILEDIR)/libsndfile.la
28
 
 
29
 
sfprocess_SOURCES = sfprocess.c 
30
 
sfprocess_LDADD = $(SNDFILEDIR)/libsndfile.la
31
 
 
32
 
list_formats_SOURCES = list_formats.c 
33
 
list_formats_LDADD = $(SNDFILEDIR)/libsndfile.la
34
 
 
35
 
cooledit_fixer_SOURCES = cooledit-fixer.c 
36
 
cooledit_fixer_LDADD = $(SNDFILEDIR)/libsndfile.la
37
 
 
38
 
generate_SOURCES = generate.c 
39
 
generate_LDADD = $(SNDFILEDIR)/libsndfile.la
40
 
 
41
 
## Do not edit or modify anything in this comment block.
42
 
## The arch-tag line is a file identity tag for the GNU Arch 
43
 
## revision control system.
44
 
##
45
 
## arch-tag: faeb8674-e417-4162-9ac9-05f2b8369b57
46