mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
This makes it more straightforward to build a cross-compiler toolchain. Also move math stuff from LibC to LibM.
8 lines
164 B
Bash
Executable File
8 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p ../Root/usr/include/sys/
|
|
mkdir -p ../Root/usr/lib/
|
|
cp *.h ../Root/usr/include/
|
|
cp sys/*.h ../Root/usr/include/sys/
|
|
cp libc.a ../Root/usr/lib/
|