diff options
| author | Raymaekers Luca <luca@spacehb.net> | 2025-11-03 23:25:05 +0100 |
|---|---|---|
| committer | Raymaekers Luca <luca@spacehb.net> | 2025-11-03 23:25:05 +0100 |
| commit | 4eb0e6ca3adea9f6139299316b0fac1f1369bd8e (patch) | |
| tree | bb75b8c92c7027ceebd0486241e29640c0a08059 /install_system.sh | |
checkpoint
Diffstat (limited to 'install_system.sh')
| -rwxr-xr-x | install_system.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/install_system.sh b/install_system.sh new file mode 100755 index 0000000..c3a1196 --- /dev/null +++ b/install_system.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +set -ue + +ThisDir="$(dirname "$(readlink -f "$0")")" +cd "$ThisDir" + +Files="$(find . -name '*.h')" + +Dest="/usr/local/include/lr/" +mkdir -p "$Dest" + +cp -v $Files "$Dest" |
