From 128684dfb24b710cc67bf3de293b31c25746db0c Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 14 Mar 2024 22:01:56 -0400 Subject: libc: Initial hyra libc commit Signed-off-by: Ian Moffett --- lib/Makefile | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'lib/Makefile') diff --git a/lib/Makefile b/lib/Makefile index a4946e9..3881833 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,11 +1,7 @@ -mlibc/build/: - cd mlibc; ln -s ../../cross/bin/ crossbin - cd mlibc; meson setup -Ddisable_crypt_option=true -Ddisable_iconv_option=true \ - -Ddisable_intl_option=true -Ddisable_libgcc_dependency=true \ - -Ddisable_linux_option=true -Ddisable_libgcc_dependency=false \ - -Dmlibc_no_headers=true \ - --cross-file=cross_file.txt build; cd build/; ninja +.PHONY: libc +libc: + cd libc; make CC=$(CC) .PHONY: clean clean: - rm -rf mlibc/build; rm -f mlibc/crossbin + cd libc/; make clean -- cgit v1.2.3