More compat work. Rename libraries from LibFoo.a => libfoo.a

This makes it more straightforward to build a cross-compiler toolchain.
Also move math stuff from LibC to LibM.
This commit is contained in:
Andreas Kling 2019-02-26 13:30:57 +01:00
commit 3f29a12d90
Notes: sideshowbarker 2024-07-19 15:37:22 +09:00
23 changed files with 140 additions and 79 deletions

View file

@ -4,8 +4,15 @@ sudo id
make_cmd="make -j2"
rm -r ../Root/usr && \
$make_cmd -C ../LibC clean && \
$make_cmd -C ../LibC && \
(cd ../LibC && ./install.sh) && \
$make_cmd -C ../LibM clean && \
$make_cmd -C ../LibM && \
(cd ../LibM && ./install.sh) && \
$make_cmd -C ../LibM clean && \
$make_cmd -C ../LibM clean && \
$make_cmd -C ../LibGUI clean && \
$make_cmd -C ../LibGUI && \
$make_cmd -C ../Userland clean && \