1 # =========================================================================
2 # This makefile was generated by
3 # Bakefile 0.2.8 (http://www.bakefile.org)
4 # Do not modify, all changes will be overwritten!
5 # =========================================================================
9 # -------------------------------------------------------------------------
10 # These are configurable options:
11 # -------------------------------------------------------------------------
13 # Compiler flags to link loadable module
14 LINK_MODULE_FLAGS ?= -shared
17 CXX = `$(WX_CONFIG) --cxx`
19 # Standard flags for C++
22 # Standard preprocessor flags (common for CC and CXX)
25 # Standard linker flags
28 # Location and arguments of wx-config script
29 WX_CONFIG ?= wx-config
31 # Port of the wx library to build against [gtk1,gtk2,msw,x11,motif,mgl,osx_cocoa,osx_carbon,dfb]
32 WX_PORT ?= $(shell $(WX_CONFIG) --query-toolkit)
34 # Use DLL build of wx library to use? [0,1]
35 WX_SHARED ?= $(shell if test -z `$(WX_CONFIG) --query-linkage`; then echo 1; else echo 0; fi)
37 # Compile Unicode build of wxWidgets? [0,1]
38 WX_UNICODE ?= $(shell $(WX_CONFIG) --query-chartype | sed 's/unicode/1/;s/ansi/0/')
40 # Version of the wx library to build against.
41 WX_VERSION ?= $(shell $(WX_CONFIG) --query-version | sed -e 's/\([0-9]*\)\.\([0-9]*\)/\1\2/')
43 # Build shared lib plugin
48 # -------------------------------------------------------------------------
49 # Do not modify the rest of this file!
50 # -------------------------------------------------------------------------
54 CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD -MP
55 WX_VERSION_MAJOR = $(shell echo $(WX_VERSION) | cut -c1,1)
56 WX_VERSION_MINOR = $(shell echo $(WX_VERSION) | cut -c2,2)
57 WX_CONFIG_FLAGS = $(WX_CONFIG_UNICODE_FLAG) $(WX_CONFIG_SHARED_FLAG) \
58 --toolkit=$(WX_PORT) --version=$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR)
59 RENDER_CXXFLAGS = -I. `$(WX_CONFIG) --cxxflags $(WX_CONFIG_FLAGS)` $(CPPFLAGS) \
63 RENDDLL_CXXFLAGS = -I. -fPIC -DPIC `$(WX_CONFIG) --cxxflags $(WX_CONFIG_FLAGS)` \
64 $(CPPFLAGS) $(CXXFLAGS)
68 ### Conditionally set variables: ###
70 ifeq ($(WX_UNICODE),0)
71 WX_CONFIG_UNICODE_FLAG = --unicode=no
73 ifeq ($(WX_UNICODE),1)
74 WX_CONFIG_UNICODE_FLAG = --unicode=yes
77 WX_CONFIG_SHARED_FLAG = --static=yes
80 WX_CONFIG_SHARED_FLAG = --static=no
83 __renddll___depname = renddll.so
89 all: test_for_selected_wxbuild render $(__renddll___depname)
101 test_for_selected_wxbuild:
102 @$(WX_CONFIG) $(WX_CONFIG_FLAGS)
104 render: $(RENDER_OBJECTS)
105 $(CXX) -o $@ $(RENDER_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) $(WX_CONFIG_FLAGS) --libs core,base`
108 renddll.so: $(RENDDLL_OBJECTS)
109 $(CXX) $(LINK_MODULE_FLAGS) -fPIC -o $@ $(RENDDLL_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) $(WX_CONFIG_FLAGS) --libs core,base`
112 render_render.o: ./render.cpp
113 $(CXX) -c -o $@ $(RENDER_CXXFLAGS) $(CPPDEPS) $<
115 renddll_renddll.o: ./renddll.cpp
116 $(CXX) -c -o $@ $(RENDDLL_CXXFLAGS) $(CPPDEPS) $<
118 .PHONY: all install uninstall clean
121 # Dependencies tracking: