11 lines
181 B
Makefile
11 lines
181 B
Makefile
prepare:
|
|
git clone git://git.savannah.gnu.org/libtool.git
|
|
cd libtool
|
|
make:
|
|
./configure --prefix=${PREFIX}/usr
|
|
make
|
|
make check
|
|
install:
|
|
make install
|
|
uninstall:
|
|
make uninstall
|