diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-19 03:42:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-19 03:42:46 +0100 |
| commit | 3bc2fca2c9beff13586b8bf3089ce439acb09de1 (patch) | |
| tree | 4cf13eb975ef8a133ca0b28de29814c94f7daccc /make_dist_osx.sh | |
| parent | c9fd682f3662e0eec09de49a36a4ea199656da34 (diff) | |
| parent | b0292253ca9732b228ef505e3e719ae05c07c10c (diff) | |
Merge pull request #12 from amlel-el-mahrouss/develop
New OCL Distrib helpers.
Diffstat (limited to 'make_dist_osx.sh')
| -rwxr-xr-x | make_dist_osx.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/make_dist_osx.sh b/make_dist_osx.sh new file mode 100755 index 0000000..9d91de3 --- /dev/null +++ b/make_dist_osx.sh @@ -0,0 +1,17 @@ +#! /bin/sh + +outputDir=dist/ + +mkdir -p $outputDir + +for f in dev/lib/*/*.hpp; do +baseName=`echo $f | cut -d "." -f 1` +echo "RUN:" ditto $baseName.hpp $outputDir$baseName +ditto $baseName.hpp $outputDir$baseName +done + +for f in tools/*.py; do +baseName=`echo $f | cut -d "." -f 1` +echo "RUN:" ditto $baseName.py $outputDir$baseName +ditto $baseName.py $outputDir$baseName +done |
