[beast: 3/10] BUILD: remove EXTRA_DIST everywhere, since we package all git tracked files



commit 8cd57d09f2e947c7857e40ed9800ac90c12312b6
Author: Tim Janik <timj gnu org>
Date:   Sun Jun 18 00:40:27 2017 +0200

    BUILD: remove EXTRA_DIST everywhere, since we package all git tracked files
    
    Signed-off-by: Tim Janik <timj gnu org>

 Makefile.am                      |    3 -
 beast-gtk/Makefile.am            |    3 -
 beast-gtk/gxk/Makefile.am        |    4 +-
 beast-gtk/icons/Makefile.am      |    1 -
 beast-gtk/res/Makefile.am        |    1 -
 bse/Makefile.am                  |   14 -------
 bse/icons/Makefile.am            |    7 ---
 bse/pybse/Makefile.am            |    1 -
 bse/res/Makefile.am              |    1 -
 bse/tests/Makefile.am            |    4 --
 data/Makefile.am                 |    7 ---
 docs/Makefile.am                 |    8 ----
 drivers/Makefile.am              |    2 -
 ebeast/Makefile.am               |    3 -
 launchers/Makefile.am            |    2 +-
 library/Makefile.am              |    3 -
 library/demo/Makefile.am         |    2 -
 library/effects/Makefile.am      |    2 -
 library/instruments/Makefile.am  |    2 -
 library/keys/Makefile.am         |    2 -
 library/samples/Makefile.am      |    2 -
 library/scripts/Makefile.am      |    2 -
 library/skins/Makefile.am        |    2 -
 library/skins/images/Makefile.am |    2 -
 plugins/Makefile.am              |    2 -
 plugins/evaluator/Makefile.am    |    5 --
 plugins/freeverb/Makefile.am     |   11 -----
 plugins/icons/Makefile.am        |   19 ---------
 plugins/icons/Makefile.icons     |   76 --------------------------------------
 po/Makefile.am                   |    6 +-
 sfi/Makefile.am                  |   17 ++------
 sfi/tests/Makefile.am            |    1 -
 shell/Makefile.am                |    4 --
 tests/audio/Makefile.am          |   25 +-----------
 tests/bse/Makefile.am            |    2 -
 tests/latency/Makefile.am        |    6 ---
 tests/scripts/Makefile.am        |    3 -
 tools/Makefile.am                |    1 -
 tools/scripts/Makefile.am        |    6 ---
 39 files changed, 12 insertions(+), 252 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index 5c79b97..c429448 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -11,7 +11,6 @@ noinst_DATA   =
 # == doc/ install ==
 projectdocsdir   = $(beastdocdir)/
 projectdocs_DATA = HACKING README NEWS COPYING
-EXTRA_DIST      += $(projectdocs_DATA)
 .SECONDARY: HACKING.md README.md               # pacify make(1) when shipping files generated from markdown
 MAINTAINERCLEANFILES += HACKING
 
@@ -67,7 +66,6 @@ uninstall_filter_files = $(strip      \
 )
 
 # == topbuildid.cc ==
-EXTRA_DIST  += misc/mkbuildid.sh topbuildid.hh
 topbuildid ::= $(shell $(topdir)/misc/mkbuildid.sh -p topbuildid.cc topbuildid.hh) # "update rule" for 
topbuildid.cc
 topbuildid.cc: # avoid explicit deps, 'topbuildid::=' ensures updates
 CLEANFILES += topbuildid.cc    # preserve across 'mostlyclean' if unchanged to avoid expensive rebuilds
@@ -87,7 +85,6 @@ ChangeLog: $(GITSTAMPS)
        $(Q) test -s $@ || { mv $@ $@.empty ; ls -al --full-time $@.empty ; exit 1 ; }
 noinst_DATA          += ChangeLog
 MAINTAINERCLEANFILES += ChangeLog
-EXTRA_DIST           += ChangeLog taptool.sh
 
 # == distgit ==
 distname      = $(PACKAGE)-$(VERSION)
diff --git a/beast-gtk/Makefile.am b/beast-gtk/Makefile.am
index 4fe8495..94f4855 100644
--- a/beast-gtk/Makefile.am
+++ b/beast-gtk/Makefile.am
@@ -40,7 +40,6 @@ beast_headers = $(strip \
        bstdefs.hh \
        bstsoundfontview.hh     bstsoundfontpresetview.hh  \
 )
-EXTRA_DIST += $(beast_headers)
 # BEAST sources to build the program from
 bst_cc_sources = $(strip \
        bsttrackrollctrl.cc     bstxframe.cc    bstscrollgraph.cc       \
@@ -70,7 +69,6 @@ beast_extra_files = $(strip                                           \
        bstparam-searchpath.cc          bstparam-time.cc                \
        bstparam-item-seq.cc            bstmarshal.list                 \
 )
-EXTRA_DIST += $(beast_extra_files)
 
 doc_sources = $(beast_headers) $(bst_cc_sources) $(beast_extra_files)
 
@@ -119,7 +117,6 @@ bstmarshal.cc: bstmarshal.list
 
 
 # == bstapi.idl ==
-EXTRA_DIST += bstapi.idl
 $(bst_cc_sources:%=$(srcdir)/%): bstserverapi.hh
 bstserverapi.hh: $(srcdir)/bstapi.idl $(AUXTYPES_PY)
        $(AM_V_GEN)
diff --git a/beast-gtk/gxk/Makefile.am b/beast-gtk/gxk/Makefile.am
index 5fc84bc..adad7c4 100644
--- a/beast-gtk/gxk/Makefile.am
+++ b/beast-gtk/gxk/Makefile.am
@@ -33,12 +33,10 @@ gxk_extra_sources = $(strip \
        gxkparam-entry.cc       gxkparam-label.cc       \
        gxkparam-scale.cc       gxkparam-spinner.cc     \
        gxkparam-toggle.cc      \
-       gxkrackcovers.cc                \
+       gxkrackcovers.cc        \
        gxkmarshal.list         \
 )
 
-EXTRA_DIST += $(gxk_headers) $(gxk_extra_sources)
-
 doc_sources = $(gxk_headers) $(gxk_c_sources) $(gxk_extra_sources)
 
 # == doc_sources.lst ==
diff --git a/beast-gtk/icons/Makefile.am b/beast-gtk/icons/Makefile.am
index 43e52c0..584957d 100644
--- a/beast-gtk/icons/Makefile.am
+++ b/beast-gtk/icons/Makefile.am
@@ -133,7 +133,6 @@ STOCK_IMAGE_DEFS = $(strip                                          \
 gen_sources = xgen-bsgc xgen-bsgh
 CLEANFILES += $(gen_sources) bst-stock-gen.cc bst-stock-gen.h
 noinst_DATA = bst-stock-gen.cc bst-stock-gen.h
-EXTRA_DIST += $(SRC_IMAGES) $(filter-out STOCK_%, $(STOCK_IMAGE_DEFS))
 
 bst-stock-gen.cc: $(srcdir)/*.png bst-stock-gen.h
        gdk-pixbuf-csource --build-list $(STOCK_IMAGE_DEFS) > xgen-bsgc         \
diff --git a/beast-gtk/res/Makefile.am b/beast-gtk/res/Makefile.am
index 9510182..bde7aa3 100644
--- a/beast-gtk/res/Makefile.am
+++ b/beast-gtk/res/Makefile.am
@@ -8,7 +8,6 @@ RESOURCES = $(strip             \
        radgets-standard.xml    \
        radgets-beast.xml       \
 )
-EXTRA_DIST += $(RESOURCES)
 
 noinst_DATA = beast-resources.cc
 beast-resources.cc: $(RESOURCES)
diff --git a/bse/Makefile.am b/bse/Makefile.am
index c648082..4704159 100644
--- a/bse/Makefile.am
+++ b/bse/Makefile.am
@@ -119,15 +119,6 @@ bse_proc_sources = $(strip \
                                bseitem.proc                                    bsewaveosc.proc         \
 )
 bse_proc_gen_sources = $(bse_proc_sources:.proc=.genprc.cc)
-# non-compile and non-install sources required
-EXTRA_DIST += $(strip \
-       bsebasics.idl   bse.idl                                 \
-       mktypes.pl      mkcalls.pl      mkcproc.pl              \
-       bseconfig.h.in  bsepcmmodule.cc                         \
-       bsewave.header                                          \
-       gsl-fftgen.pl   gsl-fftconf.sh  gsloscillator-aux.cc    \
-       gslincluder.hh  gslwaveosc-aux.cc                       \
-)
 
 doc_sources = $(bse_idl_sources) $(bse_sources) $(bse_public_headers) bseapi.idl
 
@@ -152,12 +143,10 @@ libbse_@MAJOR@_la_LDFLAGS            = $(strip            \
        -Wl,--version-script=$(srcdir)/ldscript.map     \
        -version-info $(LT_VERSION_INFO)                \
 )
-EXTRA_DIST += ldscript.map
 #      -Wl,-Bsymbolic
 # setup sources, their dependancies and commands
 CLEANFILES += $(idl_built_sources)
 EXTRA_HEADERS +=
-EXTRA_DIST += $(bse_proc_sources) engine-mplan.txt
 GLIB_MKENUMS = glib-mkenums
 # WATCH OUT: $(SFIDL) works only builddir relative
 SFIDL = $(top_builddir)/sfi/sfidl
@@ -311,7 +300,6 @@ CLEANFILES += bsehack.idl
 
 # == BSE IDL API (AIDA) ==
 AUXTYPES_PY = $(srcdir)/AuxTypes.py
-EXTRA_DIST += AuxTypes.py bseserverinsert.hh
 bseclientapi.hh: $(srcdir)/../bse/bseapi.idl $(AUXTYPES_PY)
        $(AM_V_GEN)
        $(Q) ${AIDACC} -x CxxStub -G macro=BSE_IDL -G clienthh -x $(AUXTYPES_PY) $< -o xgen-$(@F)
@@ -335,7 +323,6 @@ bseserverapi.cc: $(srcdir)/bseapi.idl $(AUXTYPES_PY)
        $(Q) mv xgen-$(@F) $@
 $(srcdir)/bseutils.cc: bseserverapi.hh bseserverapi.cc
 CLEANFILES += bseserverapi.cc
-EXTRA_DIST += bseapi.idl
 
 # == GENERATED targets ==
 CLEANFILES += $(GENERATED)
@@ -367,7 +354,6 @@ bsetool_LDADD    = $(progs_LDADD)
 bsetool_CXXFLAGS = $(AM_CXXFLAGS) $(LIBBSE_CFLAGS) -DBSE_CONVENIENCE
 
 # == Tests ==
-EXTRA_DIST += oldidl.idl
 check-oldidl: oldidl.idl AuxTypes.py
        @echo "  CHECK " $<
        $(Q) $(AIDACC_VDEBUG) --bse-extensions -x $(srcdir)/AuxTypes.py $<
diff --git a/bse/icons/Makefile.am b/bse/icons/Makefile.am
index ded88c8..d127990 100644
--- a/bse/icons/Makefile.am
+++ b/bse/icons/Makefile.am
@@ -52,10 +52,3 @@ GDK_PIXBUF_CSOURCE=gdk-pixbuf-csource
        $(Q) $(GDK_PIXBUF_CSOURCE) --name=$(call MAKE_CNAME,$(<F))_pixstream $< >xgen-$(@F)-temp && cp 
xgen-$(@F)-temp $@ && rm -f xgen-$(@F)-temp
 noinst_DATA = $(SRC_IMAGES:.png=.c)
 CLEANFILES += $(noinst_DATA)
-
-# ship images with tarballs
-EXTRA_DIST += $(strip  \
-       $(EXTRA_IMAGES) \
-       $(SRC_IMAGES)   \
-       $(SHIP_IMAGES)  \
-)
diff --git a/bse/pybse/Makefile.am b/bse/pybse/Makefile.am
index da85c17..48eaa88 100644
--- a/bse/pybse/Makefile.am
+++ b/bse/pybse/Makefile.am
@@ -30,7 +30,6 @@ nodist_Bse_la_SOURCES = Bse.cc        # nodist_ forces build time generation
 Bse_la_CXXFLAGS       = $(PYTHON_CPPFLAGS) $(AM_CXXFLAGS) -I$(AIDASTDINC) -Wno-redundant-decls 
-Wno-unused-function
 Bse_la_LDFLAGS        = $(PYTHON_LDFLAGS) $(AM_LDFLAGS) -no-undefined -module -avoid-version
 Bse_la_LIBADD         = $(RAPICORN_LIBS)  ../libbse-@MAJOR@.la $(PYTHON_LIBS)
-EXTRA_DIST           += Bse.pyx pysupport.hh
 CLEANFILES           += bseidlapi.pyx Bse.cc
 
 # call python with uninstalled or fully installed modules
diff --git a/bse/res/Makefile.am b/bse/res/Makefile.am
index 5521030..cf6e2a0 100644
--- a/bse/res/Makefile.am
+++ b/bse/res/Makefile.am
@@ -17,7 +17,6 @@ RESOURCES = $(strip           \
 gen_sources = xgen-bzc xgen-bzh
 CLEANFILES += $(gen_sources) bse-resources.cc
 noinst_DATA = bse-resources.cc
-EXTRA_DIST += $(RESOURCES)
 
 bse-resources.cc: $(srcdir)/*.bse
        $(AM_V_GEN)
diff --git a/bse/tests/Makefile.am b/bse/tests/Makefile.am
index 933d4ab..0d5afa4 100644
--- a/bse/tests/Makefile.am
+++ b/bse/tests/Makefile.am
@@ -7,8 +7,6 @@ AM_CPPFLAGS += -I$(top_srcdir) -I$(top_builddir)
 DEFS        += @DEFINE__FILE_DIR__@ -DG_LOG_DOMAIN=\"BSE-TEST\" # -DG_DISABLE_CONST_RETURNS
 AM_CXXFLAGS += $(BSE_CFLAGS) $(SFI_CPPFLAGS) $(RAPICORN_CFLAGS) -DBSE_CONVENIENCE
 
-EXTRA_DIST += arrows.gp filter-defs.gp
-
 noinst_PROGRAMS = $(ALLTESTS)
 progs_ldadd     = ../libbse-@MAJOR@.la $(LIBBSE_LIBS)
 
@@ -20,7 +18,6 @@ TAPTESTS          += filtertest
 SLOWTESTS         += filtertest
 filtertest_SOURCES = filtertest.cc
 filtertest_LDADD   = $(progs_ldadd)
-EXTRA_DIST        += filtercatalog.cc
 
 TAPTESTS       += testfft
 testfft_SOURCES = testfft.cc
@@ -34,7 +31,6 @@ TAPTESTS           += subnormals
 subnormals_SOURCES  = subnormals.cc subnormals-aux.cc
 subnormals_LDADD    = $(progs_ldadd)
 subnormals_CXXFLAGS = $(AM_CXXFLAGS) -ffast-math
-EXTRA_DIST         += subnormals.hh
 
 TAPTESTS          += loophandle
 loophandle_SOURCES = loophandle.cc
diff --git a/data/Makefile.am b/data/Makefile.am
index 95cf19d..1586fa2 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -13,7 +13,6 @@ public_images = $(strip         \
 )
 images_DATA = ${public_images}
 imagesdir = $(beastdatadir)/images
-EXTRA_DIST += $(private_images) $(public_images)
 
 
 # install pkg-config files
@@ -22,7 +21,6 @@ pkgconfig_DATA = bse.pc # bse-@MAJOR@.pc
 bse.pc: bse.pc.in $(top_builddir)/config.status
        $(AM_V_GEN)
        $(Q) cd $(top_builddir) && $(SHELL) ./config.status --file=$(subdir)/$@
-EXTRA_DIST += bse.pc.in
 CLEANFILES += bse.pc
 
 # install related pixmaps
@@ -50,7 +48,6 @@ dotdesktop_in_files = beast.desktop.in
 dotdesktop_DATA = $(dotdesktop_in_files:.desktop.in=.desktop)
 beast.desktop: beast.desktop.in
 CLEANFILES += beast.desktop
-EXTRA_DIST += $(dotdesktop_in_files)
 
 # generate and install .xml mime info file, from shared-mime-info-spec-0.12.html (2003-10-09)
 # simple overview: https://help.gnome.org/admin/system-admin-guide/stable/mime-types-custom.html
@@ -62,7 +59,6 @@ sharedmimepackage_in_files = beast.xml.in
 sharedmimepackage_DATA = $(sharedmimepackage_in_files:.xml.in=.xml)
 CLEANFILES += beast.xml
 beast.xml: beast.xml.in
-EXTRA_DIST += $(sharedmimepackage_in_files)
 
 # ANCIENT: generate and install .mime and .keys files, from shared-mime-info-spec-0.11.html (2003-04-17)
 mimedir = $(beastsharedir)/mime-info
@@ -70,12 +66,10 @@ mime_in_file = bse.keys.in bse.mime
 mime_DATA = $(mime_in_file:.keys.in=.keys)
 CLEANFILES += bse.keys
 bse.keys: bse.keys.in
-EXTRA_DIST += $(mime_in_file)
 
 # ANCIENT: install .applications files, from "GNOME 2.4 Desktop System Administration Guide"
 dotapplicationsdir = $(beastsharedir)/application-registry
 dotapplications_DATA = beast.applications
-EXTRA_DIST += $(dotapplications_DATA)
 # mime_types=...,audio/mp3,audio/x-mp3,audio/mpg3,audio/x-mpg3,audio/mpeg3,audio/x-mpeg3
 # mime_types=...,audio/mp2,audio/x-mp2,audio/mpg2,audio/x-mpg2,audio/mpeg2,audio/x-mpeg2
 # mime_types=...,audio/mp1,audio/x-mp1,audio/mpg1,audio/x-mpg1,audio/mpeg1,audio/x-mpeg1
@@ -88,7 +82,6 @@ INSTALL_SYMLINK = ( d=$$(dirname $(2)) && set -x && rm -f $(2) && $(MKDIR_P) "$$
 # * https://www.freedesktop.org/wiki/Howto_desktop_files/
 # * https://www.freedesktop.org/Standards/shared-mime-info-spec
 # TODO: ../debian/copyright *should* be moved into ../docs/ and installed from there
-EXTRA_DIST += ../debian/copyright
 install-data-hook:
        @set -x && $(INSTALL_DATA) ../debian/copyright '$(DESTDIR)$(beastdocdir)/copyright'
        @$(call INSTALL_SYMLINK, '$(beastmandir)/man1/beast.1', '$(DESTDIR)$(mandir)/man1/beast.1')
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 413dda1..b991c72 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -16,9 +16,6 @@ topdir = $(abs_top_srcdir)
 V_gen = @printf '  %-9s%s\n'
 topbuildid ::= $(shell $(topdir)/misc/mkbuildid.sh -p)
 
-# == Extra Tarball Files ==
-EXTRA_DIST += bse-categories.txt interpolation.txt ChangeLog.svn
-
 # == Collect Doxygen Sources ==
 # The following variable definitions create files as a side effect, which should be
 # avoided e.g. upon 'make clean'. So we confine the assignments to a rule execution.
@@ -44,9 +41,7 @@ docs_doxy_tagsrcs   = $(strip \
 )
 docs_doxy_tagstems  = $(filter-out =JUNK%, $(subst =, =JUNK, $(docs_doxy_tagsrcs))) # uses 'subst' for word 
splitting
 docs_doxygen_tagbzs = $(docs_doxy_tagstems:%=docs/%.bz2)
-EXTRA_DIST         += $(patsubst %, ../%, $(docs_doxygen_tagbzs))
 docs_doxygen_werror = false
-EXTRA_DIST        += $(patsubst %, ../%, $(docs_doxy_extra))
 
 # Build with dot files by default
 DOXYGEN_GRAPHICS  ?= NO # YES
@@ -72,7 +67,6 @@ doxy/src: $(patsubst %, ../%, $(docs_doxy_sources) $(docs_doxy_extra) $(docs_dox
 
 # == docs/doxy/html ==
 docs_doxy_auxfiles = ../docs/extrastyles.css ../docs/footer.html ../docs/references.bib
-EXTRA_DIST       += ../docs/doxygen.cfg ../docs/error.ign $(docs_doxy_auxfiles)
 # rebuild documentation after commits, unless NODOC is set to be non-empty
 doxy/html: $(if $(NODOC), , ../topbuildid.cc)
 # use order-only prerequisite on docs/doxy/src to spare doxygen runs for source edits
@@ -138,7 +132,6 @@ revisioned_files         = # files that need @FILE_REVISION@ substitution, see r
 
 # == revisions.lst ==
 noinst_DATA += revisions.lst
-EXTRA_DIST  += revisions.lst $(revisioned_files)
 revisions.lst: @INGIT@ $(revisioned_files) Makefile
        $(AM_V_GEN)
        $(Q) rm -f $@.tmplst
@@ -179,7 +172,6 @@ manpage_footer.html:
        $(Q) echo $$'<hr>\n<a href="../index.html">Return to Index</a>\n' > $@
 .INTERMEDIATE: manpage_footer.html
 MOSTLYCLEANFILES += manpage_footer.html
-EXTRA_DIST += ../docs/manpage.css
 
 # == man.1.html (markdown) ==
 %.1.html: %.1.revd.md manpage_header.html manpage_footer.html ../docs/manpage.css
diff --git a/drivers/Makefile.am b/drivers/Makefile.am
index 5969e16..a7e3e3c 100644
--- a/drivers/Makefile.am
+++ b/drivers/Makefile.am
@@ -15,10 +15,8 @@ drivers_libs        = ../bse/libbse-@MAJOR@.la $(LIBBSE_LIBS)
 bsepcmdevice_alsa_la_SOURCES = bsepcmdevice-alsa.cc
 bsepcmdevice_alsa_la_LDFLAGS = $(AM_LDFLAGS) -module $(drivers_ldflags)
 bsepcmdevice_alsa_la_LIBADD  = $(drivers_libs) $(ALSA_LIBS)
-EXTRA_DIST                  += bsepcmdevice-alsa.hh
 
 # Plugin bsemididevice-alsa
 bsemididevice_alsa_la_SOURCES = bsemididevice-alsa.cc
 bsemididevice_alsa_la_LDFLAGS = $(AM_LDFLAGS) -module $(drivers_ldflags)
 bsemididevice_alsa_la_LIBADD  = $(drivers_libs) $(ALSA_LIBS)
-EXTRA_DIST                   += bsemididevice-alsa.hh
diff --git a/ebeast/Makefile.am b/ebeast/Makefile.am
index fbe0d2a..477099f 100644
--- a/ebeast/Makefile.am
+++ b/ebeast/Makefile.am
@@ -5,9 +5,6 @@ SUBDIRS = v8bse .
 
 export ELECTRON_ENABLE_LOGGING=1
 
-EXTRA_DIST += $(strip \
-)
-
 # == all: ==
 all: with_npm
        @echo "$$(basename $$(pwd))/: experimental code. Usage:"
diff --git a/launchers/Makefile.am b/launchers/Makefile.am
index d89c6df..c4050d3 100644
--- a/launchers/Makefile.am
+++ b/launchers/Makefile.am
@@ -10,7 +10,7 @@ AM_CXXFLAGS += $(LAUNCHER_CFLAGS) -DG_DISABLE_CONST_RETURNS
 #
 beastbin_PROGRAMS = beast
 beast_SOURCES        = suidmain.c beaststart.c
-EXTRA_DIST          += suidmain.h
+EXTRA_HEADERS       += suidmain.h
 
 #
 # make beast wrapper suid to allow renicing
diff --git a/library/Makefile.am b/library/Makefile.am
index 966b275..3513111 100644
--- a/library/Makefile.am
+++ b/library/Makefile.am
@@ -2,6 +2,3 @@
 include $(top_srcdir)/Makefile.decl
 
 SUBDIRS = effects instruments scripts demo keys skins samples
-
-EXTRA_DIST += $(strip \
-)
diff --git a/library/demo/Makefile.am b/library/demo/Makefile.am
index 30beb6a..a8091ef 100644
--- a/library/demo/Makefile.am
+++ b/library/demo/Makefile.am
@@ -8,5 +8,3 @@ demo_DATA = $(strip             \
        x2-midi-test.bse        \
 )
 demodir = $(beastdatadir)/demo
-
-EXTRA_DIST += $(demo_DATA)
diff --git a/library/effects/Makefile.am b/library/effects/Makefile.am
index 9d0ef5a..bb2ca95 100644
--- a/library/effects/Makefile.am
+++ b/library/effects/Makefile.am
@@ -9,5 +9,3 @@ effects_DATA = $(strip                  \
        bqs-saturation-and-reverb.bse   \
 )
 effectsdir = $(beastdatadir)/effects
-
-EXTRA_DIST += $(effects_DATA)
diff --git a/library/instruments/Makefile.am b/library/instruments/Makefile.am
index 9ea0d28..9a091a0 100644
--- a/library/instruments/Makefile.am
+++ b/library/instruments/Makefile.am
@@ -11,5 +11,3 @@ instruments_DATA = $(strip    \
        stw-iron-string.bse             \
 )
 instrumentsdir = $(beastdatadir)/instruments
-
-EXTRA_DIST += $(instruments_DATA)
diff --git a/library/keys/Makefile.am b/library/keys/Makefile.am
index 34b820a..4e73913 100644
--- a/library/keys/Makefile.am
+++ b/library/keys/Makefile.am
@@ -6,5 +6,3 @@ keys_DATA = $(strip             \
        keyrc.us                \
 )
 keysdir = $(beastdatadir)/keys
-
-EXTRA_DIST += $(keys_DATA)
diff --git a/library/samples/Makefile.am b/library/samples/Makefile.am
index 8fb37c6..56862a0 100644
--- a/library/samples/Makefile.am
+++ b/library/samples/Makefile.am
@@ -6,5 +6,3 @@ sample_DATA = $(strip                   \
        retrokit.bsewave                \
 )
 sampledir = $(beastdatadir)/samples
-
-EXTRA_DIST += $(sample_DATA)
diff --git a/library/scripts/Makefile.am b/library/scripts/Makefile.am
index f4056bf..78a4b0e 100644
--- a/library/scripts/Makefile.am
+++ b/library/scripts/Makefile.am
@@ -11,5 +11,3 @@ scripts_DATA = $(strip                        \
        mixer-splitup-by-track.scm      \
 )
 scriptsdir = $(beastdatadir)/scripts
-
-EXTRA_DIST += $(scripts_DATA)
diff --git a/library/skins/Makefile.am b/library/skins/Makefile.am
index 7a0c4ee..2067abb 100644
--- a/library/skins/Makefile.am
+++ b/library/skins/Makefile.am
@@ -12,5 +12,3 @@ skins_DATA = $(strip          \
        white.skin              \
 )
 skinsdir = $(beastdatadir)/skins
-
-EXTRA_DIST += $(skins_DATA)
diff --git a/library/skins/images/Makefile.am b/library/skins/images/Makefile.am
index cf8d166..f296914 100644
--- a/library/skins/images/Makefile.am
+++ b/library/skins/images/Makefile.am
@@ -10,5 +10,3 @@ images_DATA = $(strip         \
        silvervein.png          \
 )
 imagesdir = $(beastdatadir)/skins/images
-
-EXTRA_DIST += $(images_DATA)
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 7b940a2..912186d 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -22,7 +22,6 @@ idl_files = $(strip                   \
        davchorus.idl                   \
        davorgan.idl                    \
 )
-EXTRA_DIST += $(idl_files)
 
 doc_sources = $(idl_files) $(SOURCES) $(cxx_plugin_headers) $(cxx_plugin_sources) $(cxx_plugin_extra)
 
@@ -44,7 +43,6 @@ cxx_plugin_headers = bseadder.hh bseatandistort.hh bsesimpleadsr.hh bsemixer.hh
 cxx_plugin_sources = bseadder.cc bseatandistort.cc bsesimpleadsr.cc bsemixer.cc bsemult.cc bsesequencer.cc 
bseiirfilter.cc     \
                     davcanyondelay.cc davsyndrum.cc davxtalstrings.cc
 cxx_plugin_extra   = bsesimpleadsr-aux.cc
-EXTRA_DIST        += $(cxx_plugin_headers) $(cxx_plugin_extra)
 cxxplugins_FPU_la_SOURCES  = $(cxx_plugin_sources)
 cxxplugins_FPU_la_LDFLAGS  = $(AM_LDFLAGS) -module $(plugins_ldflags)
 cxxplugins_FPU_la_LIBADD   = $(plugins_libs)
diff --git a/plugins/evaluator/Makefile.am b/plugins/evaluator/Makefile.am
index dde1f37..aa71b85 100644
--- a/plugins/evaluator/Makefile.am
+++ b/plugins/evaluator/Makefile.am
@@ -38,8 +38,3 @@ include $(top_srcdir)/Makefile.decl
 ## test programs:
 #noinst_PROGRAMS = evaluateexpr
 #evaluateexpr_SOURCES = evaluateexpr.cc $(EVALUATE_SOURCES)
-#
-#EXTRA_DIST += $(strip         \
-#      bseevaluator.cc         \
-#      $(EXTRA_HEADERS)        \
-#)
diff --git a/plugins/freeverb/Makefile.am b/plugins/freeverb/Makefile.am
index ffe43db..ebc99c9 100644
--- a/plugins/freeverb/Makefile.am
+++ b/plugins/freeverb/Makefile.am
@@ -13,14 +13,3 @@ freeverb_la_LDFLAGS = $(AM_LDFLAGS) -module -avoid-version
 freeverb_la_LIBADD  = ../../bse/libbse-@MAJOR@.la $(LIBBSE_LIBS)
 
 plugin_LTLIBRARIES = freeverb.la
-
-EXTRA_DIST += $(strip \
-       bsefreeverb.hh \
-       bsefreeverbcpp.hh \
-       denormals.hh \
-       tuning.hh \
-       allpass.hpp \
-       comb.hpp \
-       revmodel.hpp \
-        readme.txt \
-)
diff --git a/plugins/icons/Makefile.am b/plugins/icons/Makefile.am
index 4b132b6..8ca7d99 100644
--- a/plugins/icons/Makefile.am
+++ b/plugins/icons/Makefile.am
@@ -1,24 +1,5 @@
 # BEAST & BSE
 include $(top_srcdir)/Makefile.decl
 
-icon_pattern = *.c *.png *.xcf
-icon_list = 
-
-# create icon list
-Makefile.icons: $(icon_pattern) Makefile.am
-       cd $(srcdir) \
-       && echo "## Generated data (by make $@)" > $@ \
-       && for f in $(icon_pattern) ; do \
-           echo "icon_list += $$f" >>$@ ; \
-       done \
-       && echo "## Generated data ends here" >> $@
-
-EXTRA_DIST += $(strip \
-       $(icon_list) \
-)
-
 # generate C files:
 # $ gdk-pixbuf-csource --name=adsr_icon adsr.png >adsr.c
-
-## include generated icon list Makefile
-include Makefile.icons
diff --git a/po/Makefile.am b/po/Makefile.am
index b3c73bd..f88eb95 100644
--- a/po/Makefile.am
+++ b/po/Makefile.am
@@ -57,9 +57,9 @@ TRANSLATIONS = $(if ${PO_LINGUAS}, ${PO_LINGUAS}, ${ALL_LINGUAS})
 GMOFILES     = $(patsubst %, %.gmo, $(TRANSLATIONS))
 POFILES      = $(patsubst %, %.po,  $(TRANSLATIONS))
 INTLFIXDIR   = $(top_builddir)/$(ac_aux_dir)
-EXTRA_DIST  += LINGUAS POTIGNORE POTSCAN POTSKIP $(POFILES) messages.pot
-EXTRA_DIST  += $(INTLFIXDIR)/intltool-merge  $(INTLFIXDIR)/intlfix-scm.sed
-EXTRA_DIST  += $(INTLFIXDIR)/intlfix-xml.awk $(INTLFIXDIR)/intlfix-las.awk
+#EXTRA_DIST += LINGUAS POTIGNORE POTSCAN POTSKIP $(POFILES) messages.pot
+#EXTRA_DIST += $(INTLFIXDIR)/intltool-merge  $(INTLFIXDIR)/intlfix-scm.sed
+#EXTRA_DIST += $(INTLFIXDIR)/intlfix-xml.awk $(INTLFIXDIR)/intlfix-las.awk
 CLEANFILES  += $(GMOFILES)
 KEYWORDS     = _ N_ U_ Q_
 TEXTFLAGS    = _:1:pass-c-format
diff --git a/sfi/Makefile.am b/sfi/Makefile.am
index de48226..f13cc38 100644
--- a/sfi/Makefile.am
+++ b/sfi/Makefile.am
@@ -29,10 +29,6 @@ sfi_all_sources = $(strip \
 )
 sfi_extra_sources = $(strip \
 )
-sfi_built_sources = $(strip \
-)
-
-$(sfi_all_sources): $(sfi_built_sources)
 
 # == doc_sources.lst ==
 doc_sources.lst: Makefile
@@ -57,12 +53,9 @@ sfidl_SOURCES  = sfidl.cc
 sfidl_CXXFLAGS = $(AM_CXXFLAGS) $(LIBBSE_CFLAGS) -DBSE_CONVENIENCE
 sfidl_LDADD    = $(LIBBSE_LIBS)
 # included files
-EXTRA_DIST += sfidl-generator.cc sfidl-namespace.cc sfidl-options.cc sfidl-parser.cc sfidl-factory.cc
-EXTRA_DIST += sfidl-typelist.cc sfidl-cbase.cc sfidl-clientc.cc sfidl-clientcxx.cc sfidl-corec.cc
-EXTRA_DIST += sfidl-corecxx.cc sfidl-cxxbase.cc sfidl-hostc.cc sfidl-utils.cc
+sfidl_includes  = sfidl-generator.cc sfidl-namespace.cc sfidl-options.cc sfidl-parser.cc sfidl-factory.cc
+sfidl_includes += sfidl-typelist.cc sfidl-cbase.cc sfidl-clientc.cc sfidl-clientcxx.cc sfidl-corec.cc
+sfidl_includes += sfidl-corecxx.cc sfidl-cxxbase.cc sfidl-hostc.cc sfidl-utils.cc
 # headers
-EXTRA_DIST += sfidl-generator.hh sfidl-namespace.hh sfidl-options.hh sfidl-parser.hh sfidl-factory.hh
-EXTRA_DIST += sfidl-cbase.hh sfidl-clientc.hh sfidl-clientcxx.hh sfidl-cxxbase.hh sfidl-hostc.hh 
sfidl-utils.hh
-
-EXTRA_DIST += $(sfi_public_headers) $(sfi_extra_sources) $(sfi_built_sources)
-MAINTAINERCLEANFILES += $(sfi_built_sources)
+sfidl_includes += sfidl-generator.hh sfidl-namespace.hh sfidl-options.hh sfidl-parser.hh sfidl-factory.hh
+sfidl_includes += sfidl-cbase.hh sfidl-clientc.hh sfidl-clientcxx.hh sfidl-cxxbase.hh sfidl-hostc.hh 
sfidl-utils.hh
diff --git a/sfi/tests/Makefile.am b/sfi/tests/Makefile.am
index 2715f36..b197dae 100644
--- a/sfi/tests/Makefile.am
+++ b/sfi/tests/Makefile.am
@@ -33,7 +33,6 @@ testsfidl_LDADD   = $(progs_ldadd)
 $(srcdir)/testsfidl.cc: testidl.h testidl.c
 
 # testidl (generation test)
-EXTRA_DIST += testidl.idl
 CLEANFILES += testidl.h testidl.c
 testidl.h: $(srcdir)/testidl.idl $(SFIDL)
        $(SFIDL) --host-c --header $(srcdir)/testidl.idl > xgen-$(@F) \
diff --git a/shell/Makefile.am b/shell/Makefile.am
index 74a5ff4..6839d20 100644
--- a/shell/Makefile.am
+++ b/shell/Makefile.am
@@ -10,7 +10,6 @@ AM_CXXFLAGS += $(BSESCM_CFLAGS) $(BSE_CFLAGS) $(RAPICORN_CFLAGS) -DRAPICORN_CONV
 #
 built_sources = # bsescm-genglue.c
 MAINTAINERCLEANFILES += $(built_sources)
-EXTRA_DIST += $(built_sources)
 # temporary build files
 gen_sources = xgen-bsggc
 CLEANFILES += $(gen_sources)
@@ -27,7 +26,6 @@ bsescm_LDADD      = $(programs_ldadd) $(BSESCM_LIBS)
 
 # source setups
 bsescminterp.cc: # bsescm-genglue.c
-EXTRA_DIST += bsescminterp.hh
 
 
 #
@@ -36,8 +34,6 @@ EXTRA_DIST += bsescminterp.hh
 shellscriptdir = $(beastdatadir)/scripts
 shellscript_DATA = bse-scm-glue.boot
 
-EXTRA_DIST += $(shellscript_DATA)
-
 
 #
 # check
diff --git a/tests/audio/Makefile.am b/tests/audio/Makefile.am
index 963b7fb..87b432b 100644
--- a/tests/audio/Makefile.am
+++ b/tests/audio/Makefile.am
@@ -27,7 +27,6 @@ CLEANFILES += *.tmp *.wav
 
 # === feature tests ===
 FEATURE_TESTS += bseadder-test
-EXTRA_DIST += bseadder.bse bseadder.ref
 bseadder-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/bseadder.bse $(@F).wav
@@ -37,7 +36,6 @@ bseadder-test:
 
 # Test the audio-diff characteristics of BseSummation
 FEATURE_TESTS += sum-diff-test
-EXTRA_DIST += sum-diff-test.bse sum-diff-test.ref
 sum-diff-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/sum-diff-test.bse $(@F).wav --seconds 25
@@ -46,7 +44,6 @@ sum-diff-test:
        $(Q) rm -f $(@F).tmp $(@F).wav
 
 FEATURE_TESTS += balance-test
-EXTRA_DIST += balance.bse balance.ref
 balance-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/balance.bse $(@F).wav
@@ -56,7 +53,6 @@ balance-test:
        $(Q) rm -f $(@F).tmp $(@F).wav
 
 FEATURE_TESTS += minisong-test
-EXTRA_DIST += minisong.bse frowzy-drums.bsewave minisong.ref
 minisong-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/minisong.bse $(@F).wav
@@ -66,7 +62,6 @@ minisong-test:
 #      $(Q) rm -f $(@F).tmp $(@F).wav
 
 FEATURE_TESTS += syndrum-test
-EXTRA_DIST += syndrum.bse syndrum.ref
 syndrum-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/syndrum.bse $(@F).wav
@@ -76,7 +71,6 @@ syndrum-test:
        $(Q) rm -f $(@F).tmp $(@F).wav
 
 FEATURE_TESTS += velocity-test
-EXTRA_DIST += velocity.bse velocity.ref
 velocity-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/velocity.bse $(@F).wav
@@ -87,7 +81,6 @@ velocity-test:
 
 # DavOrgan module is a mono module, so we test only channel 0 (left)
 FEATURE_TESTS += organsong-test
-EXTRA_DIST += organsong.bse organsong.ref
 organsong-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/organsong.bse $(@F).wav
@@ -97,7 +90,6 @@ organsong-test:
 
 # ADSR Test checks the mono channel envelope rendering
 FEATURE_TESTS += adsrtest
-EXTRA_DIST += adsrtest.bse adsrtest.ref
 adsrtest:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/adsrtest.bse $(@F).wav
@@ -107,7 +99,6 @@ adsrtest:
 
 # checks that oscillator transposing works if the frequency is constant
 FEATURE_TESTS += osctranspose1-test
-EXTRA_DIST += osctranspose1.bse osctranspose1.ref
 osctranspose1-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/osctranspose1.bse $(@F).wav
@@ -117,7 +108,6 @@ osctranspose1-test:
 
 # checks that oscillator transposing works if the frequency is a signal
 FEATURE_TESTS += osctranspose2-test
-EXTRA_DIST += osctranspose2.bse osctranspose2.ref
 osctranspose2-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/osctranspose2.bse $(@F).wav
@@ -126,7 +116,6 @@ osctranspose2-test:
        $(Q) rm -f $(@F).tmp $(@F).wav
 
 FEATURE_TESTS += xtalstringssong-test
-EXTRA_DIST += xtalstringssong.bse xtalstringssong.ref
 xtalstringssong-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/xtalstringssong.bse $(@F).wav
@@ -136,7 +125,6 @@ xtalstringssong-test:
 
 # a loop (from toplevel test/ directory)
 # FEATURE_TESTS += freak-noise-test
-EXTRA_DIST += freak-noise.bse freak-noise.ref
 freak-noise-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/freak-noise.bse $(@F).wav --seconds 5
@@ -146,7 +134,6 @@ freak-noise-test:
 
 # another simple loop (from toplevel test/ directory)
 # FEATURE_TESTS += simple-loop-test
-EXTRA_DIST += simple-loop.bse simple-loop.ref
 simple-loop-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/simple-loop.bse $(@F).wav --seconds 5
@@ -157,7 +144,6 @@ simple-loop-test:
 
 # a test for the oscillator (from toplevel test/ directory)
 # FEATURE_TESTS += osc-test
-EXTRA_DIST += osc-test.bse osc-test.ref
 osc-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/osc-test.bse $(@F).wav --seconds 5
@@ -167,7 +153,6 @@ osc-test:
 
 # a test for ArtsCompressor
 FEATURE_TESTS += artscompressor-test
-EXTRA_DIST += artscompressor.bse artscompressor.ref
 artscompressor-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/artscompressor.bse $(@F).wav
@@ -176,14 +161,13 @@ artscompressor-test:
        $(Q) rm -f $(@F).tmp $(@F).wav
 
 # required wave files for sample based tests *-wave-[12]-test.bse
-EXTRA_DIST += pseudo-saw.bsewave pseudo-square-env.bsewave pseudo-stereo.bsewave pseudo-stereo-env.bsewave
+# EXTRA_DIST += pseudo-saw.bsewave pseudo-square-env.bsewave pseudo-stereo.bsewave pseudo-stereo-env.bsewave
 
 # required soundfonts
-EXTRA_DIST += minfluid.sf2 minfluid.sf2.LICENSE
+# EXTRA_DIST += minfluid.sf2 minfluid.sf2.LICENSE
 
 # a test for play-type=adsr-wave-1
 FEATURE_TESTS += adsr-wave-1-test
-EXTRA_DIST += adsr-wave-1-test.bse adsr-wave-1-test.ref
 adsr-wave-1-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/adsr-wave-1-test.bse $(@F).wav
@@ -194,7 +178,6 @@ adsr-wave-1-test:
 
 # a test for play-type=adsr-wave-2
 FEATURE_TESTS += adsr-wave-2-test
-EXTRA_DIST += adsr-wave-2-test.bse adsr-wave-2-test.ref
 adsr-wave-2-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/adsr-wave-2-test.bse $(@F).wav
@@ -205,7 +188,6 @@ adsr-wave-2-test:
 
 # a test for play-type=plain-wave-1
 FEATURE_TESTS += plain-wave-1-test
-EXTRA_DIST += plain-wave-1-test.bse plain-wave-1-test.ref
 plain-wave-1-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/plain-wave-1-test.bse $(@F).wav
@@ -216,7 +198,6 @@ plain-wave-1-test:
 
 # a test for play-type=plain-wave-2
 FEATURE_TESTS += plain-wave-2-test
-EXTRA_DIST += plain-wave-2-test.bse plain-wave-2-test.ref
 plain-wave-2-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/plain-wave-2-test.bse $(@F).wav
@@ -227,7 +208,6 @@ plain-wave-2-test:
 
 # a test for soundfont loading|rendering
 FEATURE_TESTS += soundfont-test
-EXTRA_DIST += soundfont-test.bse soundfont-test.ref
 soundfont-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(srcdir)/soundfont-test.bse $(@F).wav
@@ -238,7 +218,6 @@ soundfont-test:
 
 # the BEAST demo song
 FEATURE_TESTS += partymonster-test
-EXTRA_DIST += partymonster.ref
 partymonster-test:
        @$(AM_V_P) || echo "  WAVCHECK" $@;
        $(Q) $(BSE2WAV) $(top_srcdir)/library/demo/partymonster.bse $(@F).wav
diff --git a/tests/bse/Makefile.am b/tests/bse/Makefile.am
index afc8aa1..dd633b5 100644
--- a/tests/bse/Makefile.am
+++ b/tests/bse/Makefile.am
@@ -29,7 +29,6 @@ progs_ldadd = ../../bse/libbse-@MAJOR@.la $(LIBBSE_LIBS)
 TAPTESTS          += filtertest
 filtertest_SOURCES = filtertest.cc
 filtertest_LDADD   = $(progs_ldadd)
-EXTRA_DIST += empty.ogg
 
 SFIDL = $(top_builddir)/sfi/sfidl
 SFIDL_INC = --nostdinc -I$(top_srcdir) -I$(top_builddir)
@@ -39,7 +38,6 @@ lib_LTLIBRARIES = testplugin.la
 testplugin_la_SOURCES = testplugin.cc
 testplugin_la_LDFLAGS = $(AM_LDFLAGS) -module -avoid-version
 testplugin_la_LIBADD  = $(progs_ldadd)
-EXTRA_DIST += testplugin.idl
 testplugin.genidl.hh: testplugin.idl $(SFIDL)
        $(SFIDL) --core-cxx $(SFIDL_INC) -I$(top_builddir) $< > xgen-$(@F)
        mv xgen-$(@F) $@
diff --git a/tests/latency/Makefile.am b/tests/latency/Makefile.am
index 7cc2509..5d143b5 100644
--- a/tests/latency/Makefile.am
+++ b/tests/latency/Makefile.am
@@ -46,9 +46,3 @@ test:         all
           --bse-override-script-path $(top_builddir)/shell/            \
           -s $(srcdir)/bseplay.scm $(srcdir)/midi-latency.bse
 CLEANFILES += tmp-midi-fifo
-
-EXTRA_DIST += $(strip          \
-       bseplay.scm             \
-       midi-latency.bse        \
-       $(EXTRA_HEADERS)        \
-)
diff --git a/tests/scripts/Makefile.am b/tests/scripts/Makefile.am
index 6ac28ee..524e733 100644
--- a/tests/scripts/Makefile.am
+++ b/tests/scripts/Makefile.am
@@ -1,5 +1,2 @@
 # BEAST & BSE
 include $(top_srcdir)/Makefile.decl
-
-EXTRA_DIST += $(strip \
-)
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 1288a2e..4705da3 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -25,7 +25,6 @@ beastbin_PROGRAMS   = bsewavetool
 bsewavetool_SOURCES = bsewavetool.cc bwtwave.cc bseloopfuncs.cc
 nodist_bsewavetool_SOURCES = ../topbuildid.cc
 bsewavetool_LDADD   = $(progs_ldadd)
-EXTRA_DIST         += bsewavetool.hh bwtwave.hh bseloopfuncs.hh sfiutils.hh
 ../.deps/topbuildid.Po: ; mkdir -p $(@D) && touch $@ # bad hack to fix maintainer-clean
 
 noinst_PROGRAMS  += cutvorbis
diff --git a/tools/scripts/Makefile.am b/tools/scripts/Makefile.am
index 9e48d1f..524e733 100644
--- a/tools/scripts/Makefile.am
+++ b/tools/scripts/Makefile.am
@@ -1,8 +1,2 @@
 # BEAST & BSE
 include $(top_srcdir)/Makefile.decl
-
-EXTRA_DIST += $(strip \
-       waveloadtest.scm \
-       noteplaytest.scm \
-       retrokit.sh \
-)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]