mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-05 20:40:30 +00:00
11 lines
198 B
Text
11 lines
198 B
Text
|
#! /bin/sh
|
||
|
# Building with autoconf and automake has not been tested in some months.
|
||
|
# It may or may not work.
|
||
|
|
||
|
set -x
|
||
|
aclocal -I config
|
||
|
autoheader
|
||
|
automake --foreign --add-missing --copy
|
||
|
autoconf
|
||
|
|