mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-09 16:07:55 +01:00
18 lines
341 B
Bash
Executable file
18 lines
341 B
Bash
Executable file
#!/bin/bash
|
|
|
|
rm win*.h
|
|
rm win*.c
|
|
rm win*.dat
|
|
rm cpp*.cpp
|
|
rm cpp*.h
|
|
rm struct*.h
|
|
rm struct*.cpp
|
|
|
|
h=$(md5sum Makefile.in)
|
|
cp Makefile.in.orig Makefile.in
|
|
cp ../vrclient/Makefile.in.orig ../vrclient/Makefile.in
|
|
|
|
./gen_wrapper.py
|
|
if [ "$h" != "$(md5sum Makefile.in)" ]; then
|
|
echo "Don't forget to \"make depend\" at the top of the tree!"
|
|
fi
|