xuesong.jiang | ae1548e | 2022-05-06 16:38:46 +0800 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | echo "start: autoscan" | ||||
4 | autoscan | ||||
5 | echo "start: aclocal" | ||||
6 | aclocal | ||||
7 | echo "start: autoconf" | ||||
8 | autoconf | ||||
9 | echo "start: autoheader" | ||||
10 | autoheader | ||||
11 | echo "start: automake --add-missing" | ||||
12 | automake --add-missing | ||||
13 | echo "start: ./configure" | ||||
14 | ./configure | ||||
15 | echo "auto setup finish." |