Skip to content

Commit 65af507

Browse files
authored
Merge pull request #155 from vicentebolea/adding-autogen-script
Added autogen.sh file to ease autotools installation
2 parents af28992 + 33e6314 commit 65af507

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

autogen.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/sh
2+
3+
test -e ./.autotools_aux || mkdir .autotools_aux
4+
5+
libtoolize -cq
6+
aclocal -I m4 --install # Generate aclocal
7+
autoconf # Generate configure script
8+
autoheader # Generate config.h
9+
automake --add-missing --copy # Generate Makefile.in and other scripts

0 commit comments

Comments
 (0)