]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/gtk/install.txt
Remove unnecessary mondrian.{ico,xpm} files from samples directory.
[wxWidgets.git] / docs / gtk / install.txt
index 3679ccbe1b3e972e7f500076e68d6824a4a72e78..588e27ce81540f88a4d7e9a92b178e9723df9deb 100644 (file)
@@ -427,13 +427,13 @@ g++ myfoo.cpp `wx-config --cxxflags --libs` -o myfoo
 Using this way, a make file for the minimal sample would look
 like this
 
-CC = gcc
+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 --cxxflags` -c minimal.cpp -o minimal.o
+minimal.o: minimal.cpp
+       $(CXX) `wx-config --cxxflags` -c minimal.cpp -o minimal.o
 
 clean:
        rm -f *.o minimal