From 391513e8c65f1d61a16621d7daa47c7e4060f84c Mon Sep 17 00:00:00 2001 From: Ohio2 Date: Mon, 28 Jun 2021 17:55:53 +0200 Subject: [PATCH] libc --- busybox/Makefile | 4 ++++ libc/Makefile | 9 +++++++++ 2 files changed, 13 insertions(+) create mode 100644 libc/Makefile diff --git a/busybox/Makefile b/busybox/Makefile index 0d865d8..5fb9641 100644 --- a/busybox/Makefile +++ b/busybox/Makefile @@ -1,6 +1,10 @@ prepare: git clone git://busybox.net/busybox.git + cd busybox busybox: + make defconfig make install: make install +uninstall: + make uninstall diff --git a/libc/Makefile b/libc/Makefile new file mode 100644 index 0000000..b3b9a52 --- /dev/null +++ b/libc/Makefile @@ -0,0 +1,9 @@ +prepare: + git clone https://sourceware.org/git/glibc.git + cd glibc +libc: + make +install: + make install +uninstall: + make uninstall