mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
704f48d7f3
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.
8 lines
182 B
Bash
Executable file
8 lines
182 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
SERENITY_ROOT=../../
|
|
|
|
mkdir -p $SERENITY_ROOT/Root/usr/include/LibCore/
|
|
cp ./*.h $SERENITY_ROOT/Root/usr/include/LibCore/
|
|
cp libcore.a $SERENITY_ROOT/Root/usr/lib/
|