-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathgenctx.sh
38 lines (35 loc) · 941 Bytes
/
genctx.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
headers=""
num=0
recurse_dir() {
for file in `ls $1`
do
if [ -d $1/$file ]
then
recurse_dir $1/$file
else
if [ -f $1/$file ]
then
if [ ${file##*.} = "h" ]
then
# make a copy of the path but without ./
p=${1#./}
#if path begins with / then remove it
p=${p#/}
# if path isnt empty add /
if [ -n "$p" ]
then
p="$p/"
fi
headers+="#include \"$p$file\"\n"
num=$(( $num + 1 ))
fi
fi
fi
done
}
cd include
recurse_dir ./
cd ..
echo "#include \"gba/types.h\"\n$headers" | cc -E -nostdinc -Iinclude -Itools/agbcc/include - > ctx.c
echo "$headers"
echo "$num headers, written to ctx.c"