X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/471a67a7e76e5fcd331baffe5491b6f5f5893506..5f9e369af0c834bbde0f7f5d2047abd736967f58:/docs/wine/install.txt?ds=inline diff --git a/docs/wine/install.txt b/docs/wine/install.txt index fc5c65575e..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