mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 17:12:55 +02:00
9 lines
192 B
Bash
Executable File
9 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
SERENITY_ROOT=../../
|
|
|
|
mkdir -p $SERENITY_ROOT/Root/usr/include/LibMarkdown/
|
|
cp *.h $SERENITY_ROOT/Root/usr/include/LibMarkdown/
|
|
cp libmarkdown.a $SERENITY_ROOT/Root/usr/lib/
|