12 lines
269 B
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
|