16 lines
224 B
Bash
Executable File
16 lines
224 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ -d /opt/homebrew ] ; then
|
|
export CFLAGS="-I/opt/homebrew/include"
|
|
export LDFLAGS="-L/opt/homebrew/lib"
|
|
fi
|
|
|
|
aclocal
|
|
autoconf
|
|
autoheader
|
|
automake --add-missing
|
|
./configure
|
|
make
|
|
make check
|
|
make distcheck
|