1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-31 16:09:28 +02:00
audacity/src/Makefile.in
2010-04-04 08:19:53 +00:00

366 lines
8.6 KiB
Makefile

#######################################
#
# Audacity Makefile
#
# Dominic Mazzoni
#
# Run configure to generate Makefile
# from Makefile.in
#
CC = @CC@
CCC = @CXX@
# Files that must exist in order to compile a C/C++ files
CDEPEND = @CDEPEND@
# For precompiled header support
PRECOMP_CFLAGS = @PRECOMP_CFLAGS@
LOCAL_LIBS = @LOCAL_LIBS@
EXTRAOBJS = @EXTRAOBJS@
EXTRATARGETS = @EXTRATARGETS@
LIBS = @LIBS@ @PA_LIBS@
DIRS=blockfile commands effects effects/ladspa effects/nyquist effects/vamp export import prefs toolbars widgets xml
srcdir=@srcdir@
top_srcdir=@top_srcdir@
top_builddir=@top_builddir@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
# used for the MP3 exporter to help find libmp3lame.so.0
# CFLAGS are specific to C.
override CFLAGS += @CFLAGS@
# CXXFLAGS are specific to C++.
override CXXFLAGS += @CXXFLAGS@
# CPPFLAGS are for both C and C++.
override CPPFLAGS += -fno-strict-aliasing -I$(srcdir)/include -I. -DLIBDIR=\"$(libdir)\" -D__STDC_CONSTANT_MACROS @CPPFLAGS@
# LDFLAGS are for linking. BUILD_LDFLAGS are not valid during configure because
# they reference libs that haven't been built yet
override LDFLAGS += @LDFLAGS@ @BUILD_LDFLAGS@
########################################
# ALL OBJECT FILES
OBJS = \
AColor.o \
AboutDialog.o \
AudacityApp.o \
AudioIO.o \
AutoRecovery.o \
BatchCommandDialog.o \
BatchCommands.o \
BatchProcessDialog.o \
Benchmark.o \
CaptureEvents.o \
Dependencies.o \
Envelope.o \
FFmpeg.o \
FFT.o \
FileIO.o \
FileNames.o \
FreqWindow.o \
HelpText.o \
HistoryWindow.o \
ImageManipulation.o \
InterpolateAudio.o \
LabelDialog.o \
LabelTrack.o \
Languages.o \
LangChoice.o \
Legacy.o \
LoadModules.o \
Lyrics.o \
LyricsWindow.o \
Matrix.o \
Menus.o \
Mix.o \
MixerBoard.o \
PitchName.o \
PlatformCompatibility.o \
PluginManager.o \
Printing.o \
Profiler.o \
Project.o \
RealFFTf.o \
Resample.o \
RingBuffer.o \
Screenshot.o \
Shuttle.o \
ShuttleGui.o \
ShuttlePrefs.o \
Snap.o \
Spectrum.o \
SplashDialog.o \
SoundActivatedRecord.o \
Tags.o \
Theme.o \
TimeDialog.o \
TimeTrack.o \
TimerRecordDialog.o \
Track.o \
TrackArtist.o \
TrackPanel.o \
TrackPanelAx.o \
UndoManager.o \
UploadDialog.o \
VoiceKey.o \
WaveClip.o \
WaveTrack.o \
WrappedType.o \
commands/AppCommandEvent.o \
commands/BatchEvalCommand.o \
commands/Command.o \
commands/CompareAudioCommand.o \
commands/CommandBuilder.o \
commands/CommandDirectory.o \
commands/CommandHandler.o \
commands/CommandManager.o \
commands/CommandSignature.o \
commands/CommandType.o \
commands/ExecMenuCommand.o \
commands/GetAllMenuCommands.o \
commands/GetProjectInfoCommand.o \
commands/GetTrackInfoCommand.o \
commands/HelpCommand.o \
commands/ImportExportCommands.o \
commands/Keyboard.o \
commands/MessageCommand.o \
commands/PreferenceCommands.o \
commands/ResponseQueue.o \
commands/ScreenshotCommand.o \
commands/ScriptCommandRelay.o \
commands/SelectCommand.o \
commands/SetProjectInfoCommand.o \
commands/SetTrackInfoCommand.o \
effects/Effect.o \
effects/Generator.o \
effects/EffectCategory.o \
effects/EffectManager.o \
effects/SimpleMono.o \
effects/SimplePairedTwoTrack.o \
effects/SBSMSEffect.o \
effects/TimeScale.o \
effects/SoundTouchEffect.o \
effects/LoadEffects.o \
effects/Amplify.o \
effects/AutoDuck.o \
effects/BassBoost.o \
effects/ChangePitch.o \
effects/ChangeSpeed.o \
effects/ChangeTempo.o \
effects/ClickRemoval.o \
effects/Compressor.o \
effects/Contrast.o \
effects/DtmfGen.o \
effects/Echo.o \
effects/Equalization.o \
effects/Fade.o \
effects/FindClipping.o \
effects/Invert.o \
effects/Leveller.o \
effects/Noise.o \
effects/NoiseRemoval.o \
effects/Normalize.o \
effects/Phaser.o \
effects/Repair.o \
effects/Repeat.o \
effects/Reverse.o \
effects/Silence.o \
effects/SpikeCleaner.o \
effects/StereoToMono.o \
effects/TimeWarper.o \
effects/ToneGen.o \
effects/TruncSilence.o \
effects/TwoPassSimpleMono.o \
effects/VST/VSTEffect.o \
effects/Wahwah.o \
export/Export.o \
export/ExportMultiple.o \
export/ExportMP2.o \
export/ExportMP3.o \
export/ExportOGG.o \
export/ExportFLAC.o \
export/ExportPCM.o \
export/ExportCL.o \
import/Import.o \
import/ImportFLAC.o \
import/ImportLOF.o \
import/ImportMP3.o \
import/ImportOGG.o \
import/ImportPCM.o \
import/ImportRaw.o \
import/RawAudioGuess.o \
ondemand/ODComputeSummaryTask.o \
ondemand/ODDecodeTask.o \
ondemand/ODDecodeFFmpegTask.o \
ondemand/ODManager.o \
ondemand/ODTask.o \
ondemand/ODTaskThread.o \
ondemand/ODWaveTrackTaskQueue.o \
prefs/BatchPrefs.o \
prefs/DevicePrefs.o \
prefs/DirectoriesPrefs.o \
prefs/EffectsPrefs.o \
prefs/GUIPrefs.o \
prefs/ImportExportPrefs.o \
prefs/KeyConfigPrefs.o \
prefs/LibraryPrefs.o \
prefs/MidiIOPrefs.o \
prefs/MousePrefs.o \
prefs/PlaybackPrefs.o \
prefs/PrefsDialog.o \
prefs/ProjectsPrefs.o \
prefs/QualityPrefs.o \
prefs/RecordingPrefs.o \
prefs/SpectrumPrefs.o \
prefs/ThemePrefs.o \
prefs/TracksPrefs.o \
prefs/WarningsPrefs.o \
prefs/ExtImportPrefs.o \
toolbars/ControlToolBar.o \
toolbars/DeviceToolBar.o \
toolbars/EditToolBar.o \
toolbars/MeterToolBar.o \
toolbars/MixerToolBar.o \
toolbars/SelectionBar.o \
toolbars/ToolBar.o \
toolbars/ToolDock.o \
toolbars/ToolManager.o \
toolbars/ToolsToolBar.o \
toolbars/TranscriptionToolBar.o \
widgets/AButton.o \
widgets/ASlider.o \
widgets/AttachableScrollBar.o \
widgets/ErrorDialog.o \
widgets/ExpandingToolBar.o \
widgets/FileHistory.o \
widgets/Grabber.o \
widgets/Grid.o \
widgets/HtmlWindow.o \
widgets/ImageRoll.o \
widgets/LinkingHtmlWindow.o \
widgets/Meter.o \
widgets/MultiDialog.o \
widgets/ProgressDialog.o \
widgets/Ruler.o \
widgets/TimeTextCtrl.o \
widgets/Warning.o \
xml/XMLFileReader.o \
xml/XMLWriter.o \
@OPTOBJS@
TEMPORARILY_DISABLED_IMPORTER_OBJS = \
import/ImportMIDI.o \
import/ImportPCM.o \
import/ImportRaw.o \
LIBAUDACITY_OBJS = \
BlockFile.o \
Dither.o \
DirManager.o \
FileFormats.o \
Prefs.o \
SampleFormat.o \
Sequence.o \
Internat.o \
blockfile/LegacyBlockFile.o \
blockfile/LegacyAliasBlockFile.o \
blockfile/SilentBlockFile.o \
blockfile/SimpleBlockFile.o \
blockfile/PCMAliasBlockFile.o \
blockfile/ODPCMAliasBlockFile.o \
blockfile/ODDecodeBlockFile.o \
xml/XMLTagHandler.o \
########################################
# DEPENDENCIES
SOURCES = $(OBJS:%.o=%.cpp)
LIBAUDACITY_SOURCES = $(LIBAUDACITY_OBJS:%.o=%.cpp)
########################################
all: $(DIRS) libaudacity.a ../audacity $(EXTRATARGETS)
libaudacity.a: $(LIBAUDACITY_OBJS)
ar rcs libaudacity.a $(LIBAUDACITY_OBJS)
../audacity: $(OBJS) $(LOCAL_LIBS:%=$(top_builddir)/lib-src/%) $(EXTRAOBJS) libaudacity.a Makefile
$(CCC) -o ../audacity $(OBJS) $(LDFLAGS) $(LOCAL_LIBS:%=$(top_builddir)/lib-src/%) $(EXTRAOBJS) libaudacity.a $(LIBS)
@AFTERBUILD@
$(DIRS):
mkdir -p $(DIRS)
#
# Mac OS X application
#
../Audacity.app: ../audacity
mkdir -p ../Audacity.app/Contents/MacOS
mkdir -p ../Audacity.app/Contents/Resources
cp -f ../audacity ../Audacity.app/Contents/MacOS/Audacity
gcc -E -dM Audacity.h | grep AUDACITY >Info.plist.h
gcc -E -P -x c -Wno-trigraphs -traditional -include Info.plist.h ../mac/Info.plist >../Audacity.app/Contents/Info.plist
test -f "../Audacity.app/Contents/PkgInfo" || \
echo "APPLauDy" > ../Audacity.app/Contents/PkgInfo
cp -f ../mac/Resources/*.icns ../Audacity.app/Contents/Resources
cp -f ../mac/Resources2/Audacity.rsrc \
../Audacity.app/Contents/Resources/Audacity.rsrc
#
# You can optionally "make dep" to make dependencies.
# The sed script turns "Foo.o: bar/Foo.cpp" into "bar/Foo.o: bar/Foo.cpp".
#
dep:
$(CCC) -MM $(CXXFLAGS) $(CPPFLAGS) $(SOURCES) $(LIBAUDACITY_SOURCES) | \
sed -e 's/^.*\.o: \([^ ]*\)\.cpp/\1.o: \1.cpp/' \
> .depend
$(CCC) -MM $(CXXFLAGS) $(CPPFLAGS) AudacityHeaders.h | \
sed -e 's/^.*: \([^ ]*\)\.cpp/$(OBJDIR)\/\1.o: /' | \
sed 's/AudacityHeaders.o/AudacityHeaders.h.gch/' \
> .gchdepend
clean:
rm -rf $(OBJS) $(LIBAUDACITY_OBJS)
rm -f libaudacity.a AudacityHeaders.h.gch
#
# Rule for compiling C++ files
#
$(OBJS) $(LIBAUDACITY_OBJS): %.o: $(srcdir)/%.cpp configunix.h $(CDEPEND)
$(CCC) -c $(CXXFLAGS) $(CPPFLAGS) $(PRECOMP_CFLAGS) $< -o $@
#
# Special case: files that need to be compiled without precompiled headers.
#
import/ImportQTWrapper.o: import/ImportQTWrapper.cpp $(CONFIGHEADER) $(CDEPEND)
$(CCC) -c $(CXXFLAGS) $(CPPFLAGS) $< -o $@
#
# Precompiled headers:
#
AudacityHeaders.h.gch:
echo "Rebuilding Precompiled Headers"
$(CCC) -c $(CXXFLAGS) $(CPPFLAGS) AudacityHeaders.h -o AudacityHeaders.h.gch
#
# Include ".depend" if it exists (run "make dep" to generate it)
#
ifeq (.depend,$(wildcard .depend))
include .depend
endif