10 lines
129 B
Makefile
10 lines
129 B
Makefile
|
prepare:
|
||
|
git clone https://sourceware.org/git/glibc.git
|
||
|
cd glibc
|
||
|
libc:
|
||
|
make
|
||
|
install:
|
||
|
make install
|
||
|
uninstall:
|
||
|
make uninstall
|