mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-11-04 18:04:40 +00:00
13 lines
102 B
Bash
13 lines
102 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -x
|
||
|
|
||
|
rm -f config.cache
|
||
|
|
||
|
aclocal
|
||
|
autoconf
|
||
|
autoheader
|
||
|
automake -a --warnings=all
|
||
|
|
||
|
set +x
|