mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-28 13:02:13 +01:00
12 lines
187 B
Bash
Executable File
12 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FILES="*.c *.cpp *.h *.rc *.m *.py wscript"
|
|
|
|
rm xash3d.* && touch xash3d.files
|
|
|
|
for i in $FILES; do
|
|
find -name "$i" >> xash3d.files
|
|
done
|
|
|
|
ln -s contrib/a1batross/xash3d.* .
|