mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
12 lines
278 B
Bash
12 lines
278 B
Bash
|
#!/bin/sh
|
||
|
#exec autoreconf -v -i
|
||
|
|
||
|
rm -rf autom4te.cache
|
||
|
aclocal -I .. -I ../config
|
||
|
autoheader -I .. -I ../config
|
||
|
autoconf
|
||
|
automake --foreign --add-missing --copy Makefile
|
||
|
automake --foreign include/Makefile
|
||
|
automake --foreign man/Makefile
|
||
|
automake --foreign testsuite/Makefile
|