a b/src/configure
1
#!/bin/sh
2
# A real one will come in time ...
3
4
sys=`uname`
5
if [ -f mk/$sys ]; then
6
    (cd mk; test -f sysconf || ln -s $sys sysconf)
7
else
8
   cat <<EOF
9
    No system configuration file found in mk/ for '$sys'. Maybe you
10
    could try to write one, starting from one of the existing files, they
11
    are really simple.
12
EOF
13
fi