9 lines
159 B
Makefile
9 lines
159 B
Makefile
prepare:
|
|
git clone git://git.kernel.org/pub/scm/git/git.git
|
|
cd git
|
|
git:
|
|
$(MAKE)
|
|
install:
|
|
$(MAKE) install DESTDIR="${PREFIX}"
|
|
uninstall:
|
|
$(MAKE) uninstall
|