Blame Makefile.am

Packit 675970
SUBDIRS = doc
Packit 675970
if HAVE_OSS
Packit 675970
SUBDIRS += oss
Packit 675970
endif
Packit 675970
if HAVE_MIX
Packit 675970
SUBDIRS += mix
Packit 675970
endif
Packit 675970
if HAVE_JACK
Packit 675970
SUBDIRS += jack
Packit 675970
endif
Packit 675970
if HAVE_PULSE
Packit 675970
SUBDIRS += pulse
Packit 675970
endif
Packit 675970
if HAVE_SAMPLERATE
Packit 675970
SUBDIRS += rate
Packit 675970
endif
Packit 675970
if HAVE_A52
Packit 675970
SUBDIRS += a52
Packit 675970
endif
Packit 675970
if HAVE_LAVRATE
Packit 675970
SUBDIRS += rate-lav
Packit 675970
endif
Packit 675970
if HAVE_USBSTREAM
Packit 675970
SUBDIRS += usb_stream
Packit 675970
endif
Packit 675970
if HAVE_ARCAMAV
Packit 675970
SUBDIRS += arcam-av
Packit 675970
endif
Packit 675970
if HAVE_MAEMO_PLUGIN
Packit 675970
SUBDIRS += maemo
Packit 675970
endif
Packit 675970
if HAVE_PPH
Packit 675970
SUBDIRS += pph
Packit 675970
endif
Packit 675970
if HAVE_SPEEXDSP
Packit 675970
SUBDIRS += speex
Packit 675970
endif
Packit 675970
if HAVE_AAF
Packit 675970
SUBDIRS += aaf
Packit 675970
endif
Packit 675970
Packit 675970
EXTRA_DIST = gitcompile version COPYING.GPL m4/attributes.m4
Packit 675970
AUTOMAKE_OPTIONS = foreign
Packit 675970
ACLOCAL_AMFLAGS = -I m4
Packit 675970
Packit 675970
dist-hook:
Packit 675970
	-chmod -R a+r $(distdir)
Packit 675970
	@if ! test -z "$(AMTAR)"; then \
Packit 675970
		$(AMTAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
Packit 675970
	else \
Packit 675970
		$(TAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
Packit 675970
	fi