X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d969af82fc9a94ce02321111c5a7c306157d19a7..8916d00747c8e7b704ad549afcd8d0f88b6d861e:/samples/opengl/penguin/makefile.unx?ds=sidebyside diff --git a/samples/opengl/penguin/makefile.unx b/samples/opengl/penguin/makefile.unx index aaea80b74b..778d905184 100644 --- a/samples/opengl/penguin/makefile.unx +++ b/samples/opengl/penguin/makefile.unx @@ -12,7 +12,7 @@ OPENGL_LIBS=-lGL -lGLU #OPENGL_LIBS=-lMesaGL -lMesaGLU CPP = g++ -CC = gcc +CXX = $(shell wx-config --cxx) Penguin: penguin.o trackball.o lw.o $(CPP) -o Penguin \ @@ -20,13 +20,13 @@ Penguin: penguin.o trackball.o lw.o `wx-config --libs` -lwx_gtk_gl $(OPENGL_LIBS) penguin.o: penguin.cpp - $(CPP) `wx-config --cflags` -I../../gtk -c penguin.cpp + $(CPP) `wx-config --cxxflags` -I../../gtk -c penguin.cpp lw.o: lw.cpp - $(CPP) `wx-config --cflags` -I../../gtk -c lw.cpp + $(CPP) `wx-config --cxxflags` -I../../gtk -c lw.cpp trackball.o: trackball.c - $(CC) `wx-config --cflags` -I../../gtk -c trackball.c + $(CXX) `wx-config --cxxflags` -I../../gtk -c trackball.c clean: rm -f *.o Penguin