]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/dnd/makefile.unx
set m_encoding in wxCSConv ctor from name
[wxWidgets.git] / samples / dnd / makefile.unx
index 0337fb4179a2c1d06712974b277c8dcb366150ba..fbb90b2456160698ae8616b95235f8a47fdfadf4 100644 (file)
@@ -15,7 +15,7 @@
 
 PROGRAM = dnd
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 OBJECTS = $(PROGRAM).o
 
@@ -24,12 +24,12 @@ OBJECTS = $(PROGRAM).o
 .SUFFIXES:     .o .cpp
 
 .cpp.o :
-       $(CC) -c `wx-config --cflags` -o $@ $<
+       $(CXX) -c `wx-config --cxxflags` -o $@ $<
 
 all:    $(PROGRAM)
 
 $(PROGRAM):    $(OBJECTS)
-       $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
+       $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
 
 clean: 
        rm -f *.o $(PROGRAM)