mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-08 22:27:53 +00:00
12 lines
187 B
Bash
12 lines
187 B
Bash
|
#!/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.* .
|