diff --git a/Makefile b/Makefile index 15cb29f..9c97068 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ # winegcc is required to compile this program correctly, because # we need access to some Linux API -ALL: steamstub.exe +ALL: steamproxy.exe -steamstub.exe: steamstub.c - winegcc -m32 -o $@ steamstub.c - mv steamstub.exe.so steamstub.exe +steamproxy.exe: steamproxy.c + winegcc -m32 -o $@ steamproxy.c + mv steamproxy.exe.so steamproxy.exe clean: - rm -f steamstub.exe steamstub.exe.so + rm -f steamproxy.exe steamproxy.exe.so diff --git a/README b/README index a60e010..aec2eac 100644 --- a/README +++ b/README @@ -1,3 +1,5 @@ +Steamproxy does NOT involve proxy servers. It is NOT a networking proxy. If that's what you're looking for, sorry! + Steamproxy is a simple Windows program that executes a Linux program with the Linux system() library function, then exits after that program returns. It is intended for Linux users running Steam under wine. Why would you want such a simple program? Why would I write a Windows program for Linux users? Read on to find out! diff --git a/steamstub.c b/steamproxy.c similarity index 89% rename from steamstub.c rename to steamproxy.c index eaa6a3c..b63d809 100644 --- a/steamstub.c +++ b/steamproxy.c @@ -1,4 +1,4 @@ -/* steamstub.c - A Windows program for Linux +/* steamproxy.c - A Windows program for Linux Useful as a wrapper to execute a Linux binary from Windows, and block on its return (i.e. getting the Linux system() functionality for Linux binaries from diff --git a/steamstub.exe b/steamstub.exe deleted file mode 100755 index 331f84d..0000000 Binary files a/steamstub.exe and /dev/null differ