diff --git a/gcc/Makefile b/gcc/Makefile index 502cb18..4b8c576 100644 --- a/gcc/Makefile +++ b/gcc/Makefile @@ -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 diff --git a/git/Makefile b/git/Makefile new file mode 100644 index 0000000..d5124cb --- /dev/null +++ b/git/Makefile @@ -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 diff --git a/make/Makefile b/make/Makefile new file mode 100644 index 0000000..9a2a0b4 --- /dev/null +++ b/make/Makefile @@ -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