9 lines
153 B
Makefile
9 lines
153 B
Makefile
prepare:
|
|
git clone https://git.savannah.gnu.org/git/bash.git
|
|
cd bash
|
|
bash:
|
|
make
|
|
install:
|
|
make install DESTDIR="${PREFIX}"
|
|
uninstall:
|
|
make uninstall
|