1 |
william |
15 |
## Process this file with automake to create Makefile.in |
2 |
|
|
## |
3 |
|
|
## $Id: Makefile.am,v 1.3 2006/02/05 18:33:34 Olli Exp $ |
4 |
|
|
## |
5 |
|
|
## Copyright (C) 2003 - David W. Durham |
6 |
|
|
## |
7 |
|
|
## This file is part of SoundTouch, an audio processing library for pitch/time adjustments |
8 |
|
|
## |
9 |
|
|
## SoundTouch is free software; you can redistribute it and/or modify it under the |
10 |
|
|
## terms of the GNU General Public License as published by the Free Software |
11 |
|
|
## Foundation; either version 2 of the License, or (at your option) any later |
12 |
|
|
## version. |
13 |
|
|
## |
14 |
|
|
## SoundTouch is distributed in the hope that it will be useful, but WITHOUT ANY |
15 |
|
|
## WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
16 |
|
|
## A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
17 |
|
|
## |
18 |
|
|
## You should have received a copy of the GNU General Public License along with |
19 |
|
|
## this program; if not, write to the Free Software Foundation, Inc., 59 Temple |
20 |
|
|
## Place - Suite 330, Boston, MA 02111-1307, USA |
21 |
|
|
|
22 |
|
|
AUTOMAKE_OPTIONS = foreign |
23 |
|
|
|
24 |
|
|
noinst_HEADERS=AAFilter.h cpu_detect.h FIRFilter.h RateTransposer.h TDStretch.h cpu_detect_x86_gcc.cpp |
25 |
|
|
noinst_LIBRARIES = libSoundTouch.a |
26 |
|
|
|
27 |
|
|
libSoundTouch_a_CXXFLAGS = -msse -mmmx |
28 |
|
|
libSoundTouch_a_CFLAGS = -msse -mmmx |
29 |
|
|
|
30 |
|
|
#lib_LTLIBRARIES=libSoundTouch.la |
31 |
|
|
# the mmx_gcc.cpp and cpu_detect_x86_gcc.cpp may need to be conditionally included here from things discovered in configure.ac |
32 |
|
|
libSoundTouch_a_SOURCES=AAFilter.cpp FIRFilter.cpp FIFOSampleBuffer.cpp mmx_optimized.cpp sse_optimized.cpp \ |
33 |
|
|
RateTransposer.cpp SoundTouch.cpp TDStretch.cpp WavFile.cpp cpu_detect_x86_gcc.cpp |
34 |
|
|
|
35 |
|
|
# ??? test for -fcheck-new in configure.ac |
36 |
|
|
# other compiler flags to add |
37 |
|
|
AM_CXXFLAGS=-O3 -msse -fcheck-new |
38 |
|
|
#-I../../include |
39 |
|
|
|
40 |
|
|
# other linking flags to add |
41 |
|
|
#libSoundTouch_la_LIBADD= |
42 |
|
|
|