1
0
forked from QPQ-AG/enoise
This commit is contained in:
Ulf Wiger
2025-04-24 16:47:44 +02:00
parent 029292817e
commit ce950b2331
5 changed files with 39 additions and 8 deletions
Executable
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
set -e
APP=$(basename "$PWD")
SRC="_build/default/lib/$APP"
DST="$PWD/_build/zomp/lib/$APP"
mkdir -p "$DST"
find "$SRC" -type l ! -exec test -e {} \; -delete
cp -aR -L "$SRC/." "$DST/"
cp "$PWD/zomp.meta" "$DST/"
cp "$PWD/Emakefile" "$DST"
rm "$DST"/ebin/*.beam