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
269 B
Makefile

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