2009-05-21 16:10:38 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2009-06-06 13:08:46 +02:00
|
|
|
. ./auto/defaults
|
2009-05-21 16:10:38 +02:00
|
|
|
. ./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
|
|
|
|
|
2009-06-05 00:52:29 +02:00
|
|
|
if [ ! -d ./src ]; then
|
|
|
|
mkdir ./src
|
|
|
|
fi
|
|
|
|
|
2009-05-21 16:10:38 +02:00
|
|
|
. ./auto/output/config_h
|
|
|
|
. ./auto/output/Makefile
|
|
|
|
|
|
|
|
. ./auto/summary
|