15 lines
390 B
Bash
Executable file
15 lines
390 B
Bash
Executable file
#!/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"
|