blob: 5e53438e195941b4f56bf45080cde07d171b6e52 (
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
|
# try to find an appropriate awk interpreter
if which mawk > /dev/null 2>&1; then
cmd_awk=`which mawk`;
else
if which awk > /dev/null 2>&1; then
cmd_awk=`which awk`;
else
echo "No suitable AWK interpreter found. Aborting."
exit 1
fi
fi
# make them
touch $1.h
touch $1.cpp
#start with copyright notices
cat ../COPYRIGHTS > $1.h
cat ../COPYRIGHTS > $1.cpp
# add define for multiple include problem
echo "" >> $1.h
echo "#ifndef $1_H" >> $1.h
echo "#define $1_H" >> $1.h
echo "" >> $1.h
echo "namespace KSVG" >> $1.h
echo "{" >> $1.h
echo "" >> $1.h
#include in .cpp + namespace
echo "" >> $1.cpp
echo "#include \"$1.h\"" >> $1.cpp
echo "#include \"$1Impl.h\"" >> $1.cpp
echo "" >> $1.cpp
echo "using namespace KSVG;" >> $1.cpp
echo "" >> $1.cpp
#go go go
$cmd_awk -f ../makeheader $1
$cmd_awk -f ../makecc $1
#add end of define
echo "};" >> $1.h
echo "" >> $1.h
echo "#endif" >> $1.h
|