Files
xomb-bare-bones/build/configure.sh
wilkie 36543aa80f A configure script has been created. Right now it simply selects the platform to target.
Use any one of these:

./configure x86_64
./configure x86

While in the build directory.

Signed-off-by: The XOmB Overlord <overlord@xomb.net>
2009-05-03 08:40:40 +08:00

23 lines
328 B
Bash
Executable File

#!/bin/sh
render_usage()
{
echo "USAGE: ./configure --target=[TARGET]"
echo ""
echo "TARGET - one of the following values: "
for item in confs/*.conf;
do
echo "$item" | sed -e 's/confs\/\(.*\)\.conf/\1/';
done
}
if [ $# -ne 1 ]
then
render_usage
else
FILE=confs/$1.conf
echo "Targetting $1"
cp $FILE dsss.conf
fi