-
Notifications
You must be signed in to change notification settings - Fork 28
/
Makefile.am
52 lines (50 loc) · 879 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
SUBDIRS = doc
if HAVE_OSS
SUBDIRS += oss
endif
if HAVE_MIX
SUBDIRS += mix
endif
if HAVE_JACK
SUBDIRS += jack
endif
if HAVE_PULSE
SUBDIRS += pulse
endif
if HAVE_SAMPLERATE
SUBDIRS += rate
endif
if HAVE_A52
SUBDIRS += a52
endif
if HAVE_LAVRATE
SUBDIRS += rate-lav
endif
if HAVE_USBSTREAM
SUBDIRS += usb_stream
endif
if HAVE_ARCAMAV
SUBDIRS += arcam-av
endif
if HAVE_MAEMO_PLUGIN
SUBDIRS += maemo
endif
if HAVE_PPH
SUBDIRS += pph
endif
if HAVE_SPEEXDSP
SUBDIRS += speex
endif
if HAVE_AAF
SUBDIRS += aaf
endif
EXTRA_DIST = gitcompile version COPYING.GPL m4/attributes.m4
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4
dist-hook:
-chmod -R a+r $(distdir)
@if ! test -z "$(AMTAR)"; then \
$(AMTAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
else \
$(TAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
fi