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

« back to all changes in this revision

Viewing changes to lib-src/soundtouch/config/am_include.mk

  • 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
 
## vim:tw=78
2
 
## Process this file with automake to create Makefile.in
3
 
##
4
 
## $Id: am_include.mk,v 1.3 2006/09/27 06:19:52 llucius Exp $
5
 
##
6
 
## Copyright (C) 2003 - David W. Durham
7
 
## 
8
 
## This file is part of SoundTouch, an audio processing library for pitch/time adjustments
9
 
## 
10
 
## SoundTouch is free software; you can redistribute it and/or modify it under the
11
 
## terms of the GNU General Public License as published by the Free Software
12
 
## Foundation; either version 2 of the License, or (at your option) any later
13
 
## version.
14
 
## 
15
 
## SoundTouch is distributed in the hope that it will be useful, but WITHOUT ANY
16
 
## WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17
 
## A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18
 
## 
19
 
## You should have received a copy of the GNU General Public License along with
20
 
## this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21
 
## Place - Suite 330, Boston, MA  02111-1307, USA
22
 
 
23
 
## These are common definitions used in all Makefiles
24
 
## It is actually included when a makefile.am is coverted to Makefile.in
25
 
## by automake, so it's ok to have @MACROS@ that will be set by configure
26
 
 
27
 
 
28
 
## INCLUDES is automatically added to CXXFLAGS at compile time. The
29
 
## $(top_srcdir) macro is set by configure. It's important to use $(top_srcdir)
30
 
## in case a user decides to build in a separate directory from the base package
31
 
## directory. Using absolute, or relative paths is a bad idea.
32
 
INCLUDES=-I$(top_srcdir)/include
33
 
 
34
 
 
35
 
## CXXFLAGS is also automatically added to the $(CXX) macro at compile time, and
36
 
## is passed down to the children as well
37
 
## I list these here in case there needs to always be some flags passed to the compiler
38
 
CXXFLAGS=@CXXFLAGS@
39
 
 
40
 
 
41
 
## LDFLAGS will be added at link time
42
 
## note that the -l flags are set by the LIBS macro that is set by configure
43
 
## This line doesn't need to be here, configure will add LDFLAGS on it's own,
44
 
## but I'm leaving here as a place to add LDFLAGS if so desired
45
 
LDFLAGS=@LDFLAGS@
46
 
 
47
 
 
48
 
# doc directory
49
 
pkgdocdir=$(prefix)/doc/@PACKAGE@
50
 
 
51