This repository has been archived on 2019-12-04. You can view files and clone it, but cannot push or open issues or pull requests.
steamproxy/Makefile

12 lines
261 B
Makefile

# winegcc is required to compile this program correctly, because
# we need access to some Linux API
ALL: steamstub.exe
steamstub.exe: steamstub.c
winegcc -m32 -o $@ steamstub.c
mv steamstub.exe.so steamstub.exe
clean:
rm -f steamstub.exe steamstub.exe.so