mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 15:49:41 +02:00
The big thing is the common efffects UI. Right now Ladspa and VST have been converted to use it and Audiounits will be next. It makes everything nice and consistent while reducing the clutter in the dialog. Other goodies are: Ladspa effects now show output controls when supplied by the effect Ladspa effects now work fine as Analyze type effects Ladspa now has user presets VST effects dialog is now less cluttered...leaving more room for the effect Ladspa and VST effects now share a common UI Ladspa and VST effects are now usable in chains Ladspa and VST effects now handle user presets the same way Currently active effects settings automatically saved and reloaded Can now do numeric range checking on input fields. And, as always, plenty of critter squashing.
95 lines
2.6 KiB
Makefile
95 lines
2.6 KiB
Makefile
SUBDIRS = help images lib-src po src tests
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
bin_SCRIPTS = audacity$(EXEEXT)
|
|
|
|
dist_doc_DATA = LICENSE.txt README.txt
|
|
dist_pkgdata_DATA = presets/EQDefaultCurves.xml
|
|
|
|
nobase_dist_pkgdata_DATA = \
|
|
include/audacity/ConfigInterface.h \
|
|
include/audacity/EffectAutomationParameters.h \
|
|
include/audacity/EffectInterface.h \
|
|
include/audacity/IdentInterface.h \
|
|
include/audacity/ImporterInterface.h \
|
|
include/audacity/ModuleInterface.h \
|
|
include/audacity/PluginInterface.h \
|
|
include/audacity/Types.h \
|
|
nyquist/bug.lsp \
|
|
nyquist/dspprims.lsp \
|
|
nyquist/envelopes.lsp \
|
|
nyquist/equalizer.lsp \
|
|
nyquist/evalenv.lsp \
|
|
nyquist/fileio.lsp \
|
|
nyquist/follow.lsp \
|
|
nyquist/init.lsp \
|
|
nyquist/misc.lsp \
|
|
nyquist/nyinit.lsp \
|
|
nyquist/nyqmisc.lsp \
|
|
nyquist/nyquist.lsp \
|
|
nyquist/nyquist-plot.txt \
|
|
nyquist/printrec.lsp \
|
|
nyquist/profile.lsp \
|
|
nyquist/sal.lsp \
|
|
nyquist/sal-parse.lsp \
|
|
nyquist/seqfnint.lsp \
|
|
nyquist/seq.lsp \
|
|
nyquist/seqmidi.lsp \
|
|
nyquist/sndfnint.lsp \
|
|
nyquist/stk.lsp \
|
|
nyquist/system.lsp \
|
|
nyquist/xlinit.lsp \
|
|
nyquist/xm.lsp \
|
|
nyquist/rawwaves/mand1.raw \
|
|
nyquist/rawwaves/mand2.raw \
|
|
nyquist/rawwaves/mand3.raw \
|
|
nyquist/rawwaves/mand4.raw \
|
|
nyquist/rawwaves/mand5.raw \
|
|
nyquist/rawwaves/mand6.raw \
|
|
nyquist/rawwaves/mand7.raw \
|
|
nyquist/rawwaves/mand8.raw \
|
|
nyquist/rawwaves/mand9.raw \
|
|
nyquist/rawwaves/mand10.raw \
|
|
nyquist/rawwaves/mand11.raw \
|
|
nyquist/rawwaves/mand12.raw \
|
|
nyquist/rawwaves/mandpluk.raw \
|
|
nyquist/rawwaves/marmstk1.raw \
|
|
nyquist/rawwaves/sinewave.raw \
|
|
plug-ins/adjustable-fade.ny \
|
|
plug-ins/beat.ny \
|
|
plug-ins/clicktrack.ny \
|
|
plug-ins/clipfix.ny \
|
|
plug-ins/crossfadein.ny \
|
|
plug-ins/crossfadeout.ny \
|
|
plug-ins/delay.ny \
|
|
plug-ins/equalabel.ny \
|
|
plug-ins/highpass.ny \
|
|
plug-ins/lowpass.ny \
|
|
plug-ins/notch.ny \
|
|
plug-ins/pluck.ny \
|
|
plug-ins/rissetdrum.ny \
|
|
plug-ins/sample-data-export.ny \
|
|
plug-ins/SilenceMarker.ny \
|
|
plug-ins/SoundFinder.ny \
|
|
plug-ins/StudioFadeOut.ny \
|
|
plug-ins/tremolo.ny \
|
|
plug-ins/vocalremover.ny \
|
|
plug-ins/vocoder.ny \
|
|
$(NULL)
|
|
|
|
audacity$(EXEEXT): src/audacity$(EXEEXT)
|
|
rm -f audacity$(EXEEXT)
|
|
cp src/audacity$(EXEEXT) audacity$(EXEEXT)
|
|
[ -e plug-ins ] || ln -s $(srcdir)/plug-ins
|
|
[ -e nyquist ] || ln -s $(srcdir)/nyquist
|
|
[ -e locale ] || ln -s po locale
|
|
|
|
modules:
|
|
mkdir -p modules
|
|
(cd lib-src/mod-nyq-bench && make clean && make && cp .libs/mod-nyq-bench.so ../../modules)
|
|
|
|
.PHONY: modules
|
|
|
|
CLEANFILES = audacity$(EXEEXT) plug-ins nyquist locale modules
|