wav: simplify reporting of sample encoding override
[sox.git] / Makefile.am
blob5e3a19b0ec286e02d1150a17c95e669024ed589d
1 ## Process this file with automake to produce Makefile.in
3 ACLOCAL_AMFLAGS = -I m4
5 SUBDIRS = lpc10 libgsm src
6 DIST_SUBDIRS = lpc10 libgsm src
8 RM = rm -f
10 # man pages are not considered to be sources, so need to add "dist_"
11 # prefix to ensure they are added to the distribution.
12 dist_man_MANS = sox.1 soxi.1 soxformat.7 libsox.3
13 EXTRA_DIST = sox.txt soxi.txt soxformat.txt libsox.txt \
14              sox.pc.in LICENSE.GPL LICENSE.LGPL \
15              cygbuild README.win32 README.osx scripts/batch-example.bat \
16              README.sh FEATURES.in
18 if HAVE_PKGCONFIG
19 pkgconfigdir = @PKGCONFIGDIR@
20 pkgconfig_DATA = sox.pc
21 endif
23 play.1 rec.1: sox.1
24         $(RM) $@ && $(LN_S) $< $@
26 README: README.sh FEATURES.in
27         ./README.sh
29 # Rule for making text man pages.  Uses GNU nroff's -c so not portable.
30 .1.txt:
31         tbl $< | nroff -man -c | sed "s/.\b//g" > $@
32 .3.txt:
33         tbl $< | nroff -man -c | sed "s/.\b//g" > $@
34 .7.txt:
35         tbl $< | nroff -man -c | sed "s/.\b//g" > $@
37 DOCTXT = sox.txt soxi.txt soxformat.txt libsox.txt README
38 txt: $(DOCTXT)
40 # Rule for making PDF man pages
41 .1.pdf:
42         pdfroff -t -man --no-toc-relocation -Tps $< > $@
43 .3.pdf:
44         pdfroff -t -man --no-toc-relocation -Tps $< > $@
45 .7.pdf:
46         pdfroff -t -man --no-toc-relocation -Tps $< > $@
48 DOCPDF = sox.pdf soxi.pdf soxformat.pdf libsox.pdf
49 pdf: $(DOCPDF)
51 install-pdf: pdf
52         @$(NORMAL_INSTALL)
53         test -z "$(pdfdir)" || $(MKDIR_P) "$(DESTDIR)$(pdfdir)"
54         @list='$(DOCPDF)'; for p in $$list; do \
55           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
56           f=$(am__strip_dir) \
57           echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \
58           $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \
59           done
61 uninstall-pdf:
62         @$(NORMAL_UNINSTALL)
63         @list='$(DOCPDF)'; for p in $$list; do \
64           f=$(am__strip_dir) \
65           echo " $(RM) '$(DESTDIR)$(pdfdir)/$$f'"; \
66           $(RM) "$(DESTDIR)$(pdfdir)/$$f"; \
67           done
69 distclean-local:
70         $(RM) mingw32-config.cache
71         $(RM) -r -f soxpng
73 # Rule for making HTML man pages
75 # Get rid on unneeded Content-Type, man directory and manpage index in extension.
76 # e.g. ../man1/soxi.1.html becomes ../soxi.html
77 # Return to Main Contents and link to man2html are also modified.
78 FIXHTML = sed 's,<head>,&<link rel="stylesheet" href="http://sox.sourceforge.net/pub/skins/sox/sox.css" type="text/css"></link>,' 
80 .1.html:
81         groff -t -man -Thtml -P -Dsoxpng $< | $(FIXHTML) > $@
82 .3.html:
83         groff -t -man -Thtml -P -Dsoxpng $< | $(FIXHTML) > $@
84 .7.html:
85         groff -t -man -Thtml -P -Dsoxpng $< | $(FIXHTML) > $@
87 DOCHTML = sox.html soxi.html soxformat.html libsox.html
88 html: $(DOCHTML)
90 install-html: html       
91         @$(NORMAL_INSTALL)       
92         test -z "$(htmldir)/soxpng" || $(MKDIR_P) "$(DESTDIR)$(htmldir)/soxpng"
93         @list='$(DOCHTML)'; for p in $$list; do \
94         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
95         f=$(am__strip_dir) \
96         echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)//$$f'"; \
97         $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
98         done; \
99         @for p in soxpng/*; do \
100         if test -f "$$p"; then d=; else d="$(srcdir)"; fi; \
101         f=$(am__strip_dir) \
102         echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/soxpng/$$f'"; \
103         $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/soxpng/$$f"; \
104         done
106 uninstall-html:          
107         @$(NORMAL_UNINSTALL)
108         @list='$(DOCHTML)'; for p in $$list; do \
109         f=$(am__strip_dir) \
110         echo " $(RM) '$(DESTDIR)$(htmldir)/$$f'"; \
111         $(RM) "$(DESTDIR)$(htmldir)/$$f"; \
112         done; \
113         $(RM) -fr "$(DESTDIR)$(htmldir)/soxpng";
115 DISTCLEANFILES = $(DOCHTML) $(DOCPDF)
116 MAINTAINERCLEANFILES = $(DOCTXT)
118 install-data-hook:
119         cd $(DESTDIR)$(mandir)/man1 && $(RM) play.1 && $(LN_S) sox.1 play.1
120         cd $(DESTDIR)$(mandir)/man1 && $(RM) rec.1 && $(LN_S) sox.1 rec.1
121         cd $(DESTDIR)$(mandir)/man7 && $(RM) soxeffect.7 && $(LN_S) ../man1/sox.1 soxeffect.7
123 uninstall-hook:
124         $(RM) $(DESTDIR)$(mandir)/man1/play.1
125         $(RM) $(DESTDIR)$(mandir)/man1/rec.1
126         $(RM) $(DESTDIR)$(mandir)/man7/soxeffect.7
128 # Automatically update libtool script if it gets out-of-date
129 libtool: $(LIBTOOL_DEPS)
130         $(SHELL) ./config.status --recheck