stats: improve bit depth reporting [bug #267]
[sox.git] / src / Makefile.am
blobf30402fd398f1d217d58ce0af1ed39b9324436b2
1 ## Process this file with automake to produce Makefile.in
3 RM = rm -f 
5 AM_CPPFLAGS = -DLADSPA_PATH="\"@LADSPA_PATH@\""
7 if HAVE_LIBLTDL
8 # This is being used as a short cut to turn off versioning of ALL dynamic
9 # fmt libraries.  If any fmt ever needs to add a specific LDFLAGS
10 # then it will need to also add -avoid-version because AM_LDFLAGS
11 # is ignored when you specify a more specific one.
12 # We want to version libsox and we are OK because they
13 # have a more specific LDFLAGS that includes -version-info.
14 AM_LDFLAGS = -avoid-version -module
15 AM_CPPFLAGS += -DPKGLIBDIR="\"$(pkglibdir)\""
16 endif
20 #########################
21 # SoX - the application #
22 #########################
24 bin_PROGRAMS = sox
25 EXTRA_PROGRAMS = example0 example1 example2 example3 example4 example5 example6 sox_sample_test
26 lib_LTLIBRARIES = libsox.la
27 include_HEADERS = sox.h
28 sox_SOURCES = sox.c
29 if HAVE_WIN32_GLOB
30 sox_SOURCES += win32/glob.c win32/glob.h
31 AM_CPPFLAGS += -I$(srcdir)/win32
32 endif
33 sox_LDADD = libsox.la
34 example0_SOURCES = example0.c
35 example1_SOURCES = example1.c
36 example2_SOURCES = example2.c
37 example3_SOURCES = example3.c
38 example4_SOURCES = example4.c
39 example5_SOURCES = example5.c
40 example6_SOURCES = example6.c
41 sox_sample_test_SOURCES = sox_sample_test.c
45 ######################################################
46 # libsox - file format, effects, and utility library #
47 ######################################################
49 # Format handlers and utils source
50 libsox_la_SOURCES = adpcms.c adpcms.h aiff.c aiff.h cvsd.c cvsd.h cvsdfilt.h \
51           g711.c g711.h g721.c g723_24.c g723_40.c g72x.c g72x.h vox.c vox.h \
52           raw.c raw.h formats.c formats.h formats_i.c sox_i.h skelform.c \
53           xmalloc.c xmalloc.h getopt.c \
54           util.c util.h libsox.c libsox_i.c sox-fmt.c soxomp.h
56 # Effects source
57 libsox_la_SOURCES += \
58         band.h bend.c biquad.c biquad.h biquads.c chorus.c compand.c \
59         compandt.c compandt.h contrast.c dcshift.c delay.c dft_filter.c \
60         dft_filter.h dither.c dither.h divide.c downsample.c earwax.c \
61         echo.c echos.c effects.c effects.h effects_i.c effects_i_dsp.c \
62         fade.c fft4g.c fft4g.h fifo.h fir.c firfit.c flanger.c gain.c \
63         hilbert.c input.c ladspa.h ladspa.c loudness.c mcompand.c \
64         mcompand_xover.h noiseprof.c noisered.c \
65         noisered.h output.c overdrive.c pad.c phaser.c rate.c \
66         rate_filters.h rate_half_fir.h rate_poly_fir0.h rate_poly_fir.h \
67         remix.c repeat.c reverb.c reverse.c silence.c sinc.c skeleff.c \
68         speed.c splice.c stat.c stats.c stretch.c swap.c \
69         synth.c tempo.c tremolo.c trim.c upsample.c vad.c vol.c
70 if HAVE_PNG
71     libsox_la_SOURCES += spectrogram.c
72 endif
74 libsox_la_LIBADD =
76 # Libraries required by libsox for file handlers, effects, or utils;
77 # regardless if libltdl is used or not.
78 if HAVE_PNG
79 libsox_la_LIBADD += @PNG_LIBS@
80 endif
81 if HAVE_MAGIC
82 libsox_la_LIBADD += @MAGIC_LIBS@
83 endif
84 if HAVE_LIBGSM
85 libsox_la_LIBADD += @LIBGSM_LIBS@
86 endif
88 libsox_la_CFLAGS =
89 libsox_la_LDFLAGS = -no-undefined -version-info @SHLIB_VERSION@ \
90   -export-symbols $(srcdir)/libsox.sym
92 EXTRA_libsox_la_DEPENDENCIES = $(srcdir)/libsox.sym
94 if HAVE_LIBLTDL
95   libsox_la_CFLAGS += $(LIBLTDL_CFLAGS)
96   libsox_la_LIBADD += $(LIBLTDL_LIBS)
97 endif
101 #########################
102 # libsox - File Formats #
103 #########################
105 # Uncomment for bit-rot detection on linux
106 #libsox_la_SOURCES += coreaudio.c sndio.c sunaudio.c
107 #libsox_la_CFLAGS += -Ibit-rot
109 libsox_la_SOURCES += raw-fmt.c s1-fmt.c s2-fmt.c s3-fmt.c \
110   s4-fmt.c u1-fmt.c u2-fmt.c u3-fmt.c u4-fmt.c al-fmt.c la-fmt.c ul-fmt.c \
111   lu-fmt.c 8svx.c aiff-fmt.c aifc-fmt.c au.c avr.c cdr.c cvsd-fmt.c \
112   dvms-fmt.c dat.c hcom.c htk.c maud.c prc.c sf.c smp.c \
113   sounder.c soundtool.c sphere.c tx16w.c voc.c vox-fmt.c ima-fmt.c adpcm.c adpcm.h \
114   ima_rw.c ima_rw.h wav.c wve.c xa.c nulfile.c f4-fmt.c f8-fmt.c gsrt.c
116 pkglib_LTLIBRARIES =
118 include optional-fmts.am
122 # example programs will need same link options as sox does.
123 example0_LDADD = ${sox_LDADD}
124 example1_LDADD = ${sox_LDADD}
125 example2_LDADD = ${sox_LDADD}
126 example3_LDADD = ${sox_LDADD}
127 example4_LDADD = ${sox_LDADD}
128 example5_LDADD = ${sox_LDADD}
129 example6_LDADD = ${sox_LDADD}
131 EXTRA_DIST = monkey.wav optional-fmts.am \
132              tests.sh testall.sh tests.bat testall.bat test-comments
134 all: sox$(EXEEXT)
136 examples: example0$(EXEEXT) example1$(EXEEXT) example2$(EXEEXT) example3$(EXEEXT) example4$(EXEEXT) example5$(EXEEXT) example6$(EXEEXT)
138 extras: examples sox_sample_test$(EXEEXT)
140 MAKELINKS = for n in $(SYMLINKS); do $(RM) $$n$(EXEEXT) && $(LN_S) sox$(EXEEXT) $$n$(EXEEXT); done
142 all-local: sox$(EXEEXT)
143         $(MAKELINKS)
145 install-exec-hook:
146         cd $(DESTDIR)$(bindir) && $(MAKELINKS)
148 uninstall-hook:
149         cd $(DESTDIR)$(bindir) && $(RM) play$(EXEEXT) rec$(EXEEXT) soxi$(EXEEXT)
151 clean-local:
152         $(RM) play$(EXEEXT) rec$(EXEEXT) soxi$(EXEEXT)
153         $(RM) sox_sample_test$(EXEEXT)
154         $(RM) example0$(EXEEXT) example1$(EXEEXT) example2$(EXEEXT) example3$(EXEEXT) example4$(EXEEXT) example5$(EXEEXT) example6$(EXEEXT)
156 distclean-local:
158 loc:
159         sloccount \
160         $(include_HEADERS) \
161         $(sox_SOURCES) \
162         $(example0_SOURCES) \
163         $(example1_SOURCES) \
164         $(example2_SOURCES) \
165         $(example3_SOURCES) \
166         $(example4_SOURCES) \
167         $(example5_SOURCES) \
168         $(example6_SOURCES) \
169         $(sox_sample_test_SOURCES) \
170         $(libsox_la_SOURCES)
173 # Ideally we would use the "check" target so that "make distcheck"
174 # would run the test suite, but an uninstalled libltdl build cannot
175 # currently load its formats and effects, so the checks would fail.
176 installcheck:
177         $(srcdir)/tests.sh --bindir=$(DESTDIR)${bindir} --builddir=${builddir} --srcdir=${srcdir}
178         $(srcdir)/testall.sh --bindir=$(DESTDIR)${bindir} --srcdir=${srcdir}