Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gen.sh « lsteamclient - github.com/ValveSoftware/Proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5df06cb264d92c8dff8303503c6588cc8346d394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

rm win*.h
rm win*.c
rm win*.dat
rm cpp*.cpp
rm cpp*.h
rm cb*.h
rm cb*.cpp
rm cb*.dat

h=$(md5sum Makefile.in)
cp Makefile.in.orig 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