1# =========================================================================
2#     This makefile was generated by
3#     Bakefile 0.2.9 (http://www.bakefile.org)
4#     Do not modify, all changes will be overwritten!
5# =========================================================================
6
7
8
9# -------------------------------------------------------------------------
10# These are configurable options:
11# -------------------------------------------------------------------------
12
13# C++ compiler 
14CXX = g++
15
16# Standard flags for C++ 
17CXXFLAGS ?= 
18
19# Standard preprocessor flags (common for CC and CXX) 
20CPPFLAGS ?= 
21
22# Standard linker flags 
23LDFLAGS ?= 
24
25# Location and arguments of wx-config script 
26WX_CONFIG ?= wx-config
27
28# C++ flags to use with wxWidgets code 
29WX_CXXFLAGS ?= `$(WX_CONFIG) --cxxflags`
30
31
32
33# -------------------------------------------------------------------------
34# Do not modify the rest of this file!
35# -------------------------------------------------------------------------
36
37### Variables: ###
38
39CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD -MP
40XRCDEMO_CXXFLAGS =  -I.  $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
41XRCDEMO_OBJECTS =  \
42	xrcdemo_xrcdemo.o \
43	xrcdemo_myframe.o \
44	xrcdemo_derivdlg.o \
45	xrcdemo_custclas.o
46
47### Conditionally set variables: ###
48
49
50
51### Targets: ###
52
53all: xrcdemo
54
55install: 
56
57uninstall: 
58
59clean: 
60	rm -f ./*.o
61	rm -f ./*.d
62	rm -f xrcdemo
63
64xrcdemo: $(XRCDEMO_OBJECTS)
65	$(CXX) -o $@ $(XRCDEMO_OBJECTS)   `$(WX_CONFIG) --libs xrc,html,adv,core,xml,base` $(LDFLAGS)
66
67xrcdemo_xrcdemo.o: ./xrcdemo.cpp
68	$(CXX) -c -o $@ $(XRCDEMO_CXXFLAGS) $(CPPDEPS) $<
69
70xrcdemo_myframe.o: ./myframe.cpp
71	$(CXX) -c -o $@ $(XRCDEMO_CXXFLAGS) $(CPPDEPS) $<
72
73xrcdemo_derivdlg.o: ./derivdlg.cpp
74	$(CXX) -c -o $@ $(XRCDEMO_CXXFLAGS) $(CPPDEPS) $<
75
76xrcdemo_custclas.o: ./custclas.cpp
77	$(CXX) -c -o $@ $(XRCDEMO_CXXFLAGS) $(CPPDEPS) $<
78
79.PHONY: all install uninstall clean
80
81
82# Dependencies tracking:
83-include ./*.d
84