9 lines
149 B
Makefile
9 lines
149 B
Makefile
prepare:
|
|
git clone https://sourceware.org/git/glibc.git
|
|
cd glibc
|
|
libc:
|
|
make
|
|
install:
|
|
make install DESTDIR="${PREFIX}"
|
|
uninstall:
|
|
make uninstall
|