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