mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-14 10:56:35 +02:00
This makes it more straightforward to build a cross-compiler toolchain. Also move math stuff from LibC to LibM.
7 lines
128 B
Bash
Executable File
7 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p ../Root/usr/include/sys/
|
|
mkdir -p ../Root/usr/lib/
|
|
cp *.h ../Root/usr/include/
|
|
cp libm.a ../Root/usr/lib/
|