mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-14 10:56:35 +02:00
9 lines
179 B
Bash
Executable File
9 lines
179 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
SERENITY_ROOT=../../
|
|
|
|
mkdir -p $SERENITY_ROOT/Root/usr/include/LibIPC/
|
|
cp ./*.h $SERENITY_ROOT/Root/usr/include/LibIPC/
|
|
cp libipc.a $SERENITY_ROOT/Root/usr/lib/
|