kernel/configure

17 lines
209 B
Plaintext
Raw Normal View History

2017-11-04 06:51:56 +00:00
#!/bin/sh -e
2017-11-04 07:00:44 +00:00
ENV="$1"
if [ -z "$ENV" ]; then
ENV='build'
fi
CONFIG="env/$ENV.mk"
if [ ! -f "$CONFIG" ]; then
echo >&2 "ERROR: file "$CONFIG" does not exist"
exit 1
fi
cp "$CONFIG" 'config.mk'