make gcc git
This commit is contained in:
parent
391513e8c6
commit
113288f69f
3 changed files with 20 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
||||||
prepare:
|
prepare:
|
||||||
git clone git://gcc.gnu.org/git/gcc.git && cd gcc
|
git clone git://gcc.gnu.org/git/gcc.git && cd gcc
|
||||||
gcc:
|
gcc:
|
||||||
make
|
./configure
|
||||||
install:
|
install:
|
||||||
make install
|
./install-sh
|
||||||
uninstall:
|
uninstall:
|
||||||
make uninstall
|
rm -rf /usr/bin/gcc
|
||||||
|
|
9
git/Makefile
Normal file
9
git/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
prepare:
|
||||||
|
git clone git://git.kernel.org/pub/scm/git/git.git
|
||||||
|
cd git
|
||||||
|
git:
|
||||||
|
make
|
||||||
|
install:
|
||||||
|
make install
|
||||||
|
uninstall:
|
||||||
|
make uninstall
|
8
make/Makefile
Normal file
8
make/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
prepare:
|
||||||
|
git clone https://git.savannah.gnu.org/git/make.git
|
||||||
|
cd make
|
||||||
|
make:
|
||||||
|
./bootstrap
|
||||||
|
./build
|
||||||
|
uninstall:
|
||||||
|
rm -rf /usr/bin/make
|
Loading…
Reference in a new issue