X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9eb6cc3d6b3e431c83aa110174815f3642bae3d8..057945a5cdea8eae70d6f8877fbe787a261e3614:/docs/wine/install.txt

diff --git a/docs/wine/install.txt b/docs/wine/install.txt
index 7997d28d54..9a5cd5da1a 100644
--- a/docs/wine/install.txt
+++ b/docs/wine/install.txt
@@ -308,13 +308,13 @@ g++ myfoo.cpp `wx-config --libs` `wx-config --cflags` -o myfoo
 Using this way, a make file for the minimal sample would look
 like this
 
-CC = g++
+CXX = g++
 
 minimal: minimal.o
-    $(CC) -o minimal minimal.o `wx-config --libs` 
+    $(CXX) -o minimal minimal.o `wx-config --libs`
 
-minimal.o: minimal.cpp mondrian.xpm
-    $(CC) `wx-config --cflags` -c minimal.cpp -o minimal.o
+minimal.o: minimal.cpp
+    $(CXX) `wx-config --cflags` -c minimal.cpp -o minimal.o
 
 clean: 
     rm -f *.o minimal
@@ -380,6 +380,6 @@ wxWINE library will need recompiling with different options.
 Any progress on this front will be very welcome.
 
 Note that while wxWINE builds with --enable-unicode, samples
-don't run. Sample samples will run when built with
+don't run. Some samples will run when built with
 --disable-unicode, and others (such as auidemo) fail.