File: mkautofiles

package info (click to toggle)
ftape-doc 1.04-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,956 kB
  • ctags: 500
  • sloc: perl: 2,909; ansic: 756; sh: 496; makefile: 270; awk: 147
file content (37 lines) | stat: -rwxr-xr-x 441 bytes parent folder | download | duplicates (3)
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
#!/bin/sh
#
# first run aclocal
#
aclocal -I ftape-manual -I ftape-howto
#
# and autoconf
#
autoconf
#
# finally, run automake.
#
automake --add-missing
#
# then do the same in the sub directories
#
for dir in ftape-howto ftape-faq ; do
(
    cd $dir
    aclocal
    autoconf
    automake --add-missing
    (
	cd sgml-tools
	aclocal
	autoconf
	automake --add-missing
    )
)
done

(
cd ftape-manual
aclocal
autoconf
automake --add-missing
)