
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
10 lines
146 B
Bash
Executable file
10 lines
146 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "extern const char $1[];"
|
|
echo "const char $1[] = \"\\"
|
|
IFS=$'\n'
|
|
for line in $(cat $2); do
|
|
echo $line"\\"
|
|
done
|
|
echo "\";"
|
|
|