1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-07-03 06:01:45 +02:00
libunwind-eh_elf/scripts/make-L-files
2002-12-19 07:16:50 +00:00

9 lines
212 B
Bash

#!/bin/sh
set -x
for gname in G*.c; do
lname="L$(expr $gname : '.\(.*\)')"
bk edit $lname >/dev/null 2>&1
echo -e "#ifndef UNW_REMOTE_ONLY\n#define UNW_LOCAL_ONLY\n\
#include \"$gname\"\n#endif" > $lname
done