9 lines
82 B
Bash
9 lines
82 B
Bash
#!/bin/sh
|
|
if test -e Makefile
|
|
then
|
|
make distclean
|
|
fi
|
|
./autogen.sh
|
|
make
|
|
make dist
|