19 lines
237 B
Bash
Executable File
19 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ./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
|
|
|
|
. ./auto/output/config_h
|
|
. ./auto/output/Makefile
|
|
|
|
. ./auto/summary
|