Document domain parameter of wxTranslations::GetTranslatedString().
[wxWidgets.git] / samples / dll / makefile.unx
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 # Location and arguments of wx-config script 
14 WX_CONFIG ?= wx-config
15
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)
18
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)
21
22 # Compile Unicode build of wxWidgets? [0,1]
23 WX_UNICODE ?= $(shell $(WX_CONFIG) --query-chartype | sed 's/unicode/1/;s/ansi/0/')
24
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/')
27
28
29
30 # -------------------------------------------------------------------------
31 # Do not modify the rest of this file!
32 # -------------------------------------------------------------------------
33
34 ### Variables: ###
35
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)
40
41 ### Conditionally set variables: ###
42
43 ifeq ($(WX_UNICODE),0)
44 WX_CONFIG_UNICODE_FLAG = --unicode=no
45 endif
46 ifeq ($(WX_UNICODE),1)
47 WX_CONFIG_UNICODE_FLAG = --unicode=yes
48 endif
49 ifeq ($(WX_SHARED),0)
50 WX_CONFIG_SHARED_FLAG = --static=yes
51 endif
52 ifeq ($(WX_SHARED),1)
53 WX_CONFIG_SHARED_FLAG = --static=no
54 endif
55
56
57 ### Targets: ###
58
59 all: test_for_selected_wxbuild
60
61 install: 
62
63 uninstall: 
64
65 clean: 
66         rm -f ./*.o
67         rm -f ./*.d
68
69 test_for_selected_wxbuild: 
70         @$(WX_CONFIG) $(WX_CONFIG_FLAGS)
71
72 .PHONY: all install uninstall clean
73
74
75 # Dependencies tracking:
76 -include ./*.d