mirror of
https://github.com/halpz/re3.git
synced 2025-05-05 21:25:51 +00:00
7 lines
134 B
Bash
7 lines
134 B
Bash
#!sh
|
|
ext=${1##*.}
|
|
name=${1%.*}
|
|
(echo "const char *${name}_${ext}_src =";\
|
|
sed 's/..*/"&\\n"/' $1;\
|
|
echo ';') > obj/${name}_${ext}.inc
|