+# 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
+TREECTRL_CXXFLAGS = -I. $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+TREECTRL_OBJECTS = \
+ treectrl_treetest.o
+
+### Conditionally set variables: ###
+
+
+
+### Targets: ###
+
+all: treectrl
+
+install: all
+
+uninstall:
+
+clean:
+ rm -f ./*.o
+ rm -f ./*.d
+ rm -f treectrl
+
+treectrl: $(TREECTRL_OBJECTS)
+ $(CXX) -o $@ $(TREECTRL_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) --libs core,base`
+
+treectrl_treetest.o: ./treetest.cpp
+ $(CXX) -c -o $@ $(TREECTRL_CXXFLAGS) $(CPPDEPS) $<
+
+.PHONY: all install uninstall clean
+
+
+# Dependencies tracking:
+-include ./*.d