update for 2.8.10-rcX with bakefile 0.2.5

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@59160 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2009-02-26 11:46:57 +00:00
parent a387e1861f
commit eff8d6676c
113 changed files with 997 additions and 988 deletions

View File

@@ -1,6 +1,6 @@
# =========================================================================
# This makefile was generated by
# Bakefile 0.2.3 (http://www.bakefile.org)
# Bakefile 0.2.5 (http://www.bakefile.org)
# Do not modify, all changes will be overwritten!
# =========================================================================
@@ -11,22 +11,22 @@
# -------------------------------------------------------------------------
# C++ compiler
CXX := g++
CXX = g++
# Standard flags for C++
CXXFLAGS :=
CXXFLAGS ?=
# Standard preprocessor flags (common for CC and CXX)
CPPFLAGS :=
CPPFLAGS ?=
# Standard linker flags
LDFLAGS :=
LDFLAGS ?=
# Location and arguments of wx-config script
WX_CONFIG := wx-config
WX_CONFIG ?= wx-config
# C++ flags to use with wxWidgets code
WX_CXXFLAGS := `$(WX_CONFIG) --cxxflags`
WX_CXXFLAGS ?= `$(WX_CONFIG) --cxxflags`
@@ -36,7 +36,7 @@ WX_CXXFLAGS := `$(WX_CONFIG) --cxxflags`
### Variables: ###
CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD
CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD -MP
CUBE_CXXFLAGS = -I. $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
CUBE_OBJECTS = \
cube_cube.o
@@ -49,7 +49,7 @@ CUBE_OBJECTS = \
all: cube
install: all
install:
uninstall:
@@ -59,7 +59,7 @@ clean:
rm -f cube
cube: $(CUBE_OBJECTS)
$(CXX) -o $@ $(CUBE_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) --libs gl,core,base`
$(CXX) -o $@ $(CUBE_OBJECTS) `$(WX_CONFIG) --libs gl,core,base` $(LDFLAGS)
cube_cube.o: ./cube.cpp
$(CXX) -c -o $@ $(CUBE_CXXFLAGS) $(CPPDEPS) $<