mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-13 17:20:03 -04:00
21 lines
309 B
Bash
Executable File
21 lines
309 B
Bash
Executable File
#!/bin/bash -norc
|
|
# (re)make the autoconf configuration files.
|
|
# Used by am-utils maintainers only!
|
|
#
|
|
# Erez Zadok <ezk AT cs.columbia.edu>
|
|
#
|
|
#set -x
|
|
|
|
if [ ! -f amd/amd.c ]; then
|
|
cd ..
|
|
fi
|
|
if [ ! -f amd/amd.c ]; then
|
|
cd ..
|
|
fi
|
|
if [ ! -f amd/amd.c ]; then
|
|
echo "wrong directory!"
|
|
exit 1
|
|
fi
|
|
|
|
cd m4 && make $*
|