mirror of
https://github.com/HomeworldSDL/HomeworldSDL.git
synced 2026-03-31 20:13:47 +00:00
14 lines
203 B
Bash
Executable File
14 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d stuff ]; then
|
|
echo "please cd to Linux directory first"
|
|
exit 1
|
|
fi
|
|
|
|
cp stuff/acinclude.m4 ../
|
|
cp stuff/configure.ac ../
|
|
cp stuff/Makefile.am ../
|
|
cd ..
|
|
set -x
|
|
autoreconf -i -f
|