File: autogen.sh

package info (click to toggle)
nel 0.5.0-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 46,148 kB
  • ctags: 56,367
  • sloc: cpp: 373,567; ansic: 17,435; sh: 11,427; makefile: 1,840; xml: 325; modula3: 2
file content (15 lines) | stat: -rwxr-xr-x 390 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -

WANT_AUTOMAKE="1.6"

echo "Creating macros..." && \
aclocal -I automacros/ && \
echo "Creating library tools..." && \
libtoolize --force && \
echo "Creating header templates..." && \
autoheader && \
echo "Creating Makefile templates..." && \
automake --gnu --add-missing && \
echo "Creating 'configure'..." && \
autoconf && \
echo -e "\nRun: ./configure; make; make install\n"