9 lines
149 B
Makefile
9 lines
149 B
Makefile
prepare:
|
|
git clone git://git.sv.gnu.org/autoconf
|
|
cd autoconf
|
|
autoconf:
|
|
make
|
|
install:
|
|
make install DESTDIR="${PREFIX}"
|
|
uninstall:
|
|
make uninstall
|