diff options
| -rw-r--r-- | drumgizmo/Makefile.am | 1 | ||||
| -rw-r--r-- | plugin/Makefile.am | 3 | ||||
| -rw-r--r-- | plugingui/Makefile.am | 1 | ||||
| -rw-r--r-- | src/Makefile.am | 21 | 
4 files changed, 16 insertions, 10 deletions
| diff --git a/drumgizmo/Makefile.am b/drumgizmo/Makefile.am index d471679..369cd03 100644 --- a/drumgizmo/Makefile.am +++ b/drumgizmo/Makefile.am @@ -90,7 +90,6 @@ EXTRA_DIST = \  	output/alsa.h \  	output/jackaudio.h \  	output/outputdummy.h \ -	output/test.h \  	output/wavfile.h  endif # ENABLE_CLI diff --git a/plugin/Makefile.am b/plugin/Makefile.am index 7e256ba..dda7090 100644 --- a/plugin/Makefile.am +++ b/plugin/Makefile.am @@ -64,4 +64,5 @@ EXTRA_DIST = \  	$(top_srcdir)/plugin/plugingizmo/plugin.h \  	$(top_srcdir)/plugin/plugingizmo/midievent.h \  	$(top_srcdir)/plugin/plugingizmo/pluginlv2.h \ -	$(top_srcdir)/plugin/plugingizmo/pluginvst.h +	$(top_srcdir)/plugin/plugingizmo/pluginvst.h \ +	$(top_srcdir)/plugin/plugingizmo/inline-display.h diff --git a/plugingui/Makefile.am b/plugingui/Makefile.am index b666536..21a78f8 100644 --- a/plugingui/Makefile.am +++ b/plugingui/Makefile.am @@ -22,6 +22,7 @@ rcgen_SOURCES = rcgen.cc  EXTRA_DIST = \  	button.h \ +	canvas.h \  	checkbox.h \  	colour.h \  	combobox.h \ diff --git a/src/Makefile.am b/src/Makefile.am index f149aa5..bf6e9cf 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,9 +1,10 @@  EXTRA_DIST = \ -	audiocachefile.h \ +	atomic.h \ +	audio.h \  	audiocache.h \  	audiocacheeventhandler.h \ +	audiocachefile.h \  	audiocacheidmanager.h \ -	audio.h \  	audiofile.h \  	audioinputengine.h \  	audioinputenginemidi.h \ @@ -20,10 +21,10 @@ EXTRA_DIST = \  	drumkitloader.h \  	drumkitparser.h \  	events.h \ +	inputfilter.h \ +	inputprocessor.h \  	instrument.h \  	instrumentparser.h \ -	inputfiler.h \ -	inputprocessor.h \  	latencyfilter.h \  	memchecker.h \  	midimapparser.h \ @@ -32,19 +33,22 @@ EXTRA_DIST = \  	nolocale.h \  	notifier.h \  	path.h \ +	platform.h \  	powerlist.h \ +	random.h \  	rangemap.h \  	sample.h \  	saxparser.h \  	semaphore.h \ +	settings.h \  	staminafilter.h \ +	syncedsettings.h \  	thread.h \ -	velocity.h \  	versionstr.h \   \ -	audiocachefile.cc \  	audiocache.cc \  	audiocacheeventhandler.cc \ +	audiocachefile.cc \  	audiocacheidmanager.cc \  	audiofile.cc \  	audioinputengine.cc \ @@ -61,20 +65,21 @@ EXTRA_DIST = \  	drumkitloader.cc \  	drumkitparser.cc \  	events.cc \ +	inputprocessor.cc \  	instrument.cc \  	instrumentparser.cc \ -	inputprocessor.cc \  	latencyfilter.cc \ +	localetest.cc \  	memchecker.cc \  	midimapparser.cc \  	midimapper.cc \  	mutex.cc \  	path.cc \  	powerlist.cc \ +	random.cc \  	sample.cc \  	saxparser.cc \  	semaphore.cc \  	staminafilter.cc \  	thread.cc \ -	velocity.cc \  	versionstr.cc | 
