libc
This commit is contained in:
parent
788baaec20
commit
391513e8c6
2 changed files with 13 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
||||||
prepare:
|
prepare:
|
||||||
git clone git://busybox.net/busybox.git
|
git clone git://busybox.net/busybox.git
|
||||||
|
cd busybox
|
||||||
busybox:
|
busybox:
|
||||||
|
make defconfig
|
||||||
make
|
make
|
||||||
install:
|
install:
|
||||||
make install
|
make install
|
||||||
|
uninstall:
|
||||||
|
make uninstall
|
||||||
|
|
9
libc/Makefile
Normal file
9
libc/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
prepare:
|
||||||
|
git clone https://sourceware.org/git/glibc.git
|
||||||
|
cd glibc
|
||||||
|
libc:
|
||||||
|
make
|
||||||
|
install:
|
||||||
|
make install
|
||||||
|
uninstall:
|
||||||
|
make uninstall
|
Loading…
Reference in a new issue