~z-man/armagetronad/0.2.9-armagetronad-sty+ct+ap-windows-ci-fix

1 by luke-jr
Unify tags/branches of modules released together
1
#!/bin/sh
2
DIRS="tron engine win32 tools render ui network ."
3
rm filelist
4
for f in $DIRS ; do
5
  find src/$f -maxdepth 1  -name "*.h" >> filelist
6
done
7
8
find src \( -name "*.cpp" -o -name "*.in" \) >> filelist
9
10
cat filelist | shar -ST
11