aboutsummaryrefslogtreecommitdiff
path: root/src/makesource.sh
blob: ee2211ce7c1013c412dd60768b31570756f8683c (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/sh

ZEXY_H=z_zexy.h
ZEXY_C=z_zexy.c


GREP=grep
AWK=awk
SED=sed

#################################
## functions

head_h() {
 echo "/* zexy-setup autogenerated header-file"
 echo " * generated by \"$0\""
 echo " * !! DO NOT MANUALLY EDIT  !!"
 echo " */"
 echo
 echo "#ifndef Z_ZEXY_H__"
 echo "#define Z_ZEXY_H__"
}

foot_h() {
 echo ""
 echo "void z_zexy_setup(void);"
 echo "#endif /* Z_ZEXY_H__ */"
 echo ""
}

head_c() {
 echo "/* zexy-setup autogenerated setup-file"
 echo " * generated by \"$0\""
 echo " * !! DO NOT MANUALLY EDIT  !!"
 echo " */"
 echo 
 echo "#include \"$ZEXY_H\""
 echo
 echo "void z_zexy_setup(void)"
 echo "{"
}

foot_c() {
 echo "}"
 echo
}

##################################
## body

head_h > $ZEXY_H
head_c > $ZEXY_C

for f in `ls *.c | grep -v zexy.c`
do
## each c-file in zexy needs to have a z_<file>_setup()-function
## that calls all needed setup-functions
## any non-alpha-numeric-character is replaced by "_"
## e.g. "multiplex~.c" -> "z_multiplex__setup()"
  i=${f%.c}
  SETUPNAME=$(echo $i | sed -e "s/.*0x.*/setup_&/g" -e "s/~/_tilde/g" -e "/0x/! s/.*/&_setup/")
  if grep -w ${SETUPNAME} $f > /dev/null; then
   echo "void ${SETUPNAME}(void); /* $i */" >> $ZEXY_H
   echo "	${SETUPNAME}(); /* $i */" >> $ZEXY_C
  fi
done

foot_h >> $ZEXY_H
foot_c >> $ZEXY_C