diff --git a/tooling2/files.sh b/tooling2/files.sh new file mode 100644 index 00000000..a3096f16 --- /dev/null +++ b/tooling2/files.sh @@ -0,0 +1,21 @@ +#!/bin/bash +set -e +tool=build/clang-x86_64-pc-windows-msvc/Release/r3_gh_tool + +scan_dir=tmps/gh_auto +file_list=files.txt +rm -f $file_list +for file in tmps/gh_auto/*.cxx +do + echo $file >> $file_list +done +for file in tmps/gh_stub/*.cxx +do + echo $file >> $file_list +done +for file in tmps/gh_fix/*.h +do + echo $file >> $file_list +done + +$tool @$file_list