diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-19 19:41:49 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-19 19:41:49 +0100 |
| commit | 73adafc405eae26d9c65809ca5612967b8f534cb (patch) | |
| tree | 35ac20be06594c133c46dccb983049ebee7fc0a2 /lib/libsteps/make_dist_linux.sh | |
| parent | 712140303d88a0e7e689376c862954811623c5ae (diff) | |
feat: libsteps: improvements on the steps library.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'lib/libsteps/make_dist_linux.sh')
| -rwxr-xr-x | lib/libsteps/make_dist_linux.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/libsteps/make_dist_linux.sh b/lib/libsteps/make_dist_linux.sh new file mode 100755 index 0000000..fe58a8d --- /dev/null +++ b/lib/libsteps/make_dist_linux.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +outputDir=dist/lib/ + +mkdir -p $outputDir + +for f in *.hpp; do +baseName=`echo $f | cut -d "." -f 1` +echo "RUN:" cp --parents $f.hpp $outputDir$baseName +cp --parents $f.hpp $outputDir$baseName +done + |
