-
Notifications
You must be signed in to change notification settings - Fork 111
/
Makefile.am
123 lines (101 loc) · 3.66 KB
/
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
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
## Process this file with automake to produce Makefile.in
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = lpc10 src
DIST_SUBDIRS = lpc10 src
RM = rm -f
# man pages are not considered to be sources, so need to add "dist_"
# prefix to ensure they are added to the distribution.
dist_man_MANS = sox.1 soxi.1 soxformat.7 libsox.3
EXTRA_DIST = sox.txt soxi.txt soxformat.txt libsox.txt \
sox.pc.in LICENSE.GPL LICENSE.LGPL \
cygbuild README.win32 README.osx scripts/batch-example.bat \
README.sh FEATURES.in
pkgconfig_DATA = sox.pc
play.1 rec.1: sox.1
$(RM) $@ && $(LN_S) $< $@
README: README.sh FEATURES.in
./README.sh
# Rule for making text man pages. Uses GNU nroff's -c so not portable.
.1.txt:
tbl $< | nroff -man -c | sed "s/.//g" > $@
.3.txt:
tbl $< | nroff -man -c | sed "s/.//g" > $@
.7.txt:
tbl $< | nroff -man -c | sed "s/.//g" > $@
DOCTXT = sox.txt soxi.txt soxformat.txt libsox.txt README
txt: $(DOCTXT)
# Rule for making PDF man pages
.1.pdf:
pdfroff -t -man --no-toc-relocation -Tps $< > $@
.3.pdf:
pdfroff -t -man --no-toc-relocation -Tps $< > $@
.7.pdf:
pdfroff -t -man --no-toc-relocation -Tps $< > $@
DOCPDF = sox.pdf soxi.pdf soxformat.pdf libsox.pdf
pdf: $(DOCPDF)
install-pdf: pdf
@$(NORMAL_INSTALL)
test -z "$(pdfdir)" || $(MKDIR_P) "$(DESTDIR)$(pdfdir)"
@list='$(DOCPDF)'; for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
f=$(am__strip_dir) \
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \
done
uninstall-pdf:
@$(NORMAL_UNINSTALL)
@list='$(DOCPDF)'; for p in $$list; do \
f=$(am__strip_dir) \
echo " $(RM) '$(DESTDIR)$(pdfdir)/$$f'"; \
$(RM) "$(DESTDIR)$(pdfdir)/$$f"; \
done
distclean-local:
$(RM) mingw32-config.cache
$(RM) -r -f soxpng
# Rule for making HTML man pages
#
# Get rid on unneeded Content-Type, man directory and manpage index in extension.
# e.g. ../man1/soxi.1.html becomes ../soxi.html
# Return to Main Contents and link to man2html are also modified.
FIXHTML = sed 's,<head>,&<link rel="stylesheet" href="http://sox.sourceforge.net/pub/skins/sox/sox.css" type="text/css"></link>,'
.1.html:
groff -t -man -Thtml -P -Dsoxpng $< | $(FIXHTML) > $@
.3.html:
groff -t -man -Thtml -P -Dsoxpng $< | $(FIXHTML) > $@
.7.html:
groff -t -man -Thtml -P -Dsoxpng $< | $(FIXHTML) > $@
DOCHTML = sox.html soxi.html soxformat.html libsox.html
html: $(DOCHTML)
install-html: html
@$(NORMAL_INSTALL)
test -z "$(htmldir)/soxpng" || $(MKDIR_P) "$(DESTDIR)$(htmldir)/soxpng"
@list='$(DOCHTML)'; for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
f=$(am__strip_dir) \
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)//$$f'"; \
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
done; \
@for p in soxpng/*; do \
if test -f "$$p"; then d=; else d="$(srcdir)"; fi; \
f=$(am__strip_dir) \
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/soxpng/$$f'"; \
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/soxpng/$$f"; \
done
uninstall-html:
@$(NORMAL_UNINSTALL)
@list='$(DOCHTML)'; for p in $$list; do \
f=$(am__strip_dir) \
echo " $(RM) '$(DESTDIR)$(htmldir)/$$f'"; \
$(RM) "$(DESTDIR)$(htmldir)/$$f"; \
done; \
$(RM) -fr "$(DESTDIR)$(htmldir)/soxpng";
DISTCLEANFILES = $(DOCHTML) $(DOCPDF)
MAINTAINERCLEANFILES = $(DOCTXT)
install-data-hook:
cd $(DESTDIR)$(mandir)/man1 && $(RM) play.1 && $(LN_S) sox.1 play.1
cd $(DESTDIR)$(mandir)/man1 && $(RM) rec.1 && $(LN_S) sox.1 rec.1
cd $(DESTDIR)$(mandir)/man7 && $(RM) soxeffect.7 && $(LN_S) ../man1/sox.1 soxeffect.7
uninstall-hook:
$(RM) $(DESTDIR)$(mandir)/man1/play.1
$(RM) $(DESTDIR)$(mandir)/man1/rec.1
$(RM) $(DESTDIR)$(mandir)/man7/soxeffect.7