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
Raw Permalink Normal View History

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