2006-10-28 17:54:52 -04:00
|
|
|
# =========================================================================
|
|
|
|
# This makefile was generated by
|
2006-11-09 21:32:01 -05:00
|
|
|
# Bakefile 0.2.1 (http://bakefile.sourceforge.net)
|
2006-10-28 17:54:52 -04:00
|
|
|
# Do not modify, all changes will be overwritten!
|
|
|
|
# =========================================================================
|
1998-10-18 18:31:48 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2006-10-28 17:54:52 -04:00
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
# These are configurable options:
|
|
|
|
# -------------------------------------------------------------------------
|
1998-10-18 18:31:48 -04:00
|
|
|
|
2006-10-28 17:54:52 -04:00
|
|
|
# C++ compiler
|
|
|
|
CXX = g++
|
2000-01-03 12:11:48 -05:00
|
|
|
|
2006-10-28 17:54:52 -04:00
|
|
|
# Standard flags for C++
|
|
|
|
CXXFLAGS =
|
2000-01-03 12:11:48 -05:00
|
|
|
|
2006-10-28 17:54:52 -04:00
|
|
|
# Standard preprocessor flags (common for CC and CXX)
|
|
|
|
CPPFLAGS =
|
2000-01-03 12:11:48 -05:00
|
|
|
|
2006-10-28 17:54:52 -04:00
|
|
|
# Standard linker flags
|
|
|
|
LDFLAGS =
|
2000-01-03 12:11:48 -05:00
|
|
|
|
2006-10-28 17:54:52 -04:00
|
|
|
# Location and arguments of wx-config script
|
|
|
|
WX_CONFIG = wx-config
|
2000-01-03 12:11:48 -05:00
|
|
|
|
2006-10-28 17:54:52 -04:00
|
|
|
# C++ flags to use with wxWidgets code
|
|
|
|
WX_CXXFLAGS = `$(WX_CONFIG) --cxxflags`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
# Do not modify the rest of this file!
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
### Variables: ###
|
|
|
|
|
|
|
|
CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD
|
|
|
|
GRID_CXXFLAGS = -I. $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
|
|
|
|
GRID_OBJECTS = \
|
|
|
|
grid_griddemo.o
|
|
|
|
|
|
|
|
### Conditionally set variables: ###
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Targets: ###
|
|
|
|
|
|
|
|
all: grid
|
|
|
|
|
|
|
|
install: all
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f ./*.o
|
|
|
|
rm -f ./*.d
|
|
|
|
rm -f grid
|
|
|
|
|
|
|
|
grid: $(GRID_OBJECTS)
|
|
|
|
$(CXX) -o $@ $(GRID_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) --libs adv,html,xml,core,base`
|
|
|
|
|
|
|
|
grid_griddemo.o: ./griddemo.cpp
|
|
|
|
$(CXX) -c -o $@ $(GRID_CXXFLAGS) $(CPPDEPS) $<
|
|
|
|
|
|
|
|
.PHONY: all install uninstall clean
|
|
|
|
|
|
|
|
|
|
|
|
# Dependencies tracking:
|
|
|
|
-include ./*.d
|