1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-07-05 06:45:34 +02:00
libunwind-eh_elf/scripts/make-L-files

9 lines
212 B
Plaintext
Raw Normal View History

2002-12-19 08:16:50 +01:00
#!/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