-
Notifications
You must be signed in to change notification settings - Fork 4
/
table.sh
52 lines (52 loc) · 819 Bytes
/
table.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# module : table.sh
# version : 1.8
# date : 11/15/24
#
# Generate table.c
# The directory needs to be given as parameter.
#
echo checking table.c
todo=0
if [ ! -s $1/table.c ]
then
echo creating table.c
todo=1
else
for i in $1/src/*.c
do
if [ $i -nt $1/table.c ]
then
echo updating table.c
todo=1
break
fi
done
fi
if [ $todo -eq 0 ]
then
echo table.c is up-to-date
exit
fi
rm -f $1/table.c
for i in $1/src/*.c
do
j=`basename $i`
j=`expr $j : '\(.*\)\.c'`
sed -n '/\/\*\*/ {
N
N
N
N
N
N
N
N
s/[^\n]*\n\([^ \t]*\)[ \t]*\([^ \t]*\)[ \t]*\([^ \t]*\)[ \t]*\([^ \t]*\)[ \t]*:[ \t]*\([^\n]*\)[ \n]*\([^*]*\)\*\/.*/\/* \3 *\/ { \1, \2, @\4@, '$j'_, @\5@, @\6@ },/
s/\n/\\n/g
s/"/\\"/g
s/@/"/g
P
}' <$i
done | sort >$1/table.c
touch $1/optable.c