File: autogen.sh

package info (click to toggle)
elinks 0.12~pre5-9
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 19,604 kB
  • sloc: ansic: 99,308; sh: 5,293; python: 3,878; perl: 2,175; makefile: 1,131; pascal: 924; yacc: 295; lisp: 125; ruby: 70; awk: 65
file content (28 lines) | stat: -rwxr-xr-x 636 bytes parent folder | download | duplicates (4)
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
#!/bin/sh

echo acinclude.m4...
(
	echo "dnl Automatically generated from config/m4/ files by autogen.sh!"
	echo "dnl Do not modify!"
	cat config/m4/*.m4
) > acinclude.m4

echo aclocal...
aclocal

echo autoheader...
autoheader
# The timestamp of stamp-h.in indicates when config.h.in was last
# generated or found to be already correct.  Create stamp-h.in so
# that it gets included in elinks-*.tar.gz and Makefile won't try
# to run a possibly incompatible version of autoheader (bug 936).
echo timestamp > stamp-h.in

echo autoconf...
autoconf

echo config.cache, autom4te.cache...
rm -f config.cache
rm -rf autom4te.cache

echo done