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 # =========================================================================
9 # -------------------------------------------------------------------------
10 # These are configurable options:
11 # -------------------------------------------------------------------------
13 # Location and arguments of wx-config script
14 WX_CONFIG ?= wx-config
16 # Port of the wx library to build against [gtk1,gtk2,msw,x11,motif,osx_cocoa,osx_carbon,dfb]
17 WX_PORT ?= $(shell $(WX_CONFIG) --query-toolkit)
19 # Use DLL build of wx library to use? [0,1]
20 WX_SHARED ?= $(shell if test -z `$(WX_CONFIG) --query-linkage`; then echo 1; else echo 0; fi)
22 # Compile Unicode build of wxWidgets? [0,1]
23 WX_UNICODE ?= $(shell $(WX_CONFIG) --query-chartype | sed 's/unicode/1/;s/ansi/0/')
25 # Version of the wx library to build against.
26 WX_VERSION ?= $(shell $(WX_CONFIG) --query-version | sed -e 's/\([0-9]*\)\.\([0-9]*\)/\1\2/')
30 # -------------------------------------------------------------------------
31 # Do not modify the rest of this file!
32 # -------------------------------------------------------------------------
36 WX_VERSION_MAJOR = $(shell echo $(WX_VERSION) | cut -c1,1)
37 WX_VERSION_MINOR = $(shell echo $(WX_VERSION) | cut -c2,2)
38 WX_CONFIG_FLAGS = $(WX_CONFIG_UNICODE_FLAG) $(WX_CONFIG_SHARED_FLAG) \
39 --toolkit=$(WX_PORT) --version=$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR)
41 ### Conditionally set variables: ###
43 ifeq ($(WX_UNICODE),0)
44 WX_CONFIG_UNICODE_FLAG = --unicode=no
46 ifeq ($(WX_UNICODE),1)
47 WX_CONFIG_UNICODE_FLAG = --unicode=yes
50 WX_CONFIG_SHARED_FLAG = --static=yes
53 WX_CONFIG_SHARED_FLAG = --static=no
59 all: test_for_selected_wxbuild
69 test_for_selected_wxbuild:
70 @$(WX_CONFIG) $(WX_CONFIG_FLAGS)
72 .PHONY: all install uninstall clean
75 # Dependencies tracking: