1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-26 07:10:09 +01:00

Minor bug fixes for EXPERIMENTAL_MIDI_OUT. Also added files for autoconf/automake to portmidi and libscorealign. I also modified my local build-related files in src and lib-src to handle EXPERIMENTAL_MIDI_OUT and EXPERIMENTAL_SCOREALIGN, but while I can build with these options, the build-related files are not entirely working, so I will not commit them and break the "normal" builds. I suspect these new build files in this commit are not entirely correct -- some review is in order.

This commit is contained in:
rbdannenberg
2010-10-28 15:35:29 +00:00
parent b87a808468
commit 932ca88255
34 changed files with 19537 additions and 28 deletions

View File

@@ -0,0 +1,58 @@
## Process this file with automake to produce Makefile.in
# Makefile(.in) for scorealign using Autotools (but not libtool).
# Written by Richard Ash following Gary Vaughan's Autobook
# tell aclocal that extra macros can be found in autotools/m4/
ACLOCAL_AMFLAGS = -I autotools/m4
# define the output library (link with -lscorealign)
lib_LIBRARIES = libscorealign.a
# define the source files to use
libscorealign_a_SOURCES = audiomixerreader.cpp \
audioreader.cpp \
comp_chroma.cpp \
curvefit.cpp \
gen_chroma.cpp \
hillclimb.cpp \
regression.cpp \
sautils.cpp \
scorealign.cpp \
scorealign-glue.cpp \
fft3/FFT3.cpp \
audiomixerreader.h \
audioreader.h \
comp_chroma.h \
curvefit.h \
gen_chroma.h \
hillclimb.h \
regression.h \
sautils.h \
fft3/FFT3.h
# and the header files for the library. At the moment these go into the include
# directory directly, it would be much better to have them in a subdirectory
# but that would mean re-organising them here (a subdirectory called scorealign to
# keep headers in, add -I$(srcdir)/scorealign/ to AM_CXXFLAGS, change the paths
# to the headers here and change the name of the variable to nobase_include_...
include_HEADERS = scorealign-glue.h \
scorealign.h \
ScoreAlignParams.h
override CXXFLAGS += -I../portsmf
# files that only really viscous cleans remove
MAINTAINERCLEANFILES = Makefile.in
# other distributed files in case users don't have a complete set of auto*
AUX_DIST = $(ac_aux_dir)/config.guess \
$(ac_aux_dir)/config.sub \
$(ac_aux_dir)/install-sh \
$(ac_aux_dir)/mdate-sh \
$(ac_aux_dir)/missing \
$(ac_aux_dir)/mkinstalldirs \
$(MAINTAINERCLEANFILES)
# Documentation files that should be both distributed and installed in the doc
# directory,
dist_doc_DATA = README.txt license.txt