9 lines
244 B
Bash
9 lines
244 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Fisrt of all, you should set PATH to tdr tools properly
|
||
|
|
PATH=$1:${PATH}
|
||
|
|
export PATH
|
||
|
|
|
||
|
|
tdr --xml2h --no_type_prefix --no_lowercase_prefix TEMPLE_ORI_conf_desc.xml
|
||
|
|
tdr --xml2c -o TEMPLE_ORI_conf_desc.c TEMPLE_ORI_conf_desc.xml
|