make gcc git

This commit is contained in:
Ohio2 2021-06-29 00:05:14 +02:00
parent 391513e8c6
commit 113288f69f
3 changed files with 20 additions and 3 deletions

View file

@ -1,8 +1,8 @@
prepare:
git clone git://gcc.gnu.org/git/gcc.git && cd gcc
gcc:
make
./configure
install:
make install
./install-sh
uninstall:
make uninstall
rm -rf /usr/bin/gcc

9
git/Makefile Normal file
View 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
View 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