24 lines
297 B
Bash
24 lines
297 B
Bash
#!/bin/sh
|
|
|
|
. ./auto/defaults
|
|
. ./auto/options
|
|
|
|
if [ -f ./src/config.h ]; then
|
|
echo ERROR: config.h exists
|
|
exit
|
|
fi
|
|
|
|
if [ -f ./Makefile ]; then
|
|
echo ERROR: Makefile exists
|
|
exit
|
|
fi
|
|
|
|
if [ ! -d ./src ]; then
|
|
mkdir ./src
|
|
fi
|
|
|
|
. ./auto/output/config_h
|
|
. ./auto/output/Makefile
|
|
|
|
. ./auto/summary
|