Menu

[42b355]: / src / Makefile.am  Maximize  Restore  History

Download this file

185 lines (142 with data), 5.7 kB

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