mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-01 14:18:15 +00:00
Ports/.port_include.sh, Toolchain/BuildIt.sh, Toolchain/UseIt.sh have been left largely untouched due to use of Bash-exclusive functions and variables such as $BASH_SOURCE, pushd and popd.
10 lines
205 B
Bash
Executable File
10 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
SERENITY_ROOT=../../
|
|
|
|
mkdir -p $SERENITY_ROOT/Root/usr/include/sys/
|
|
mkdir -p $SERENITY_ROOT/Root/usr/lib/
|
|
cp ./*.h $SERENITY_ROOT/Root/usr/include/
|
|
cp libm.a $SERENITY_ROOT/Root/usr/lib/
|