]> git.saurik.com Git - wxWidgets.git/blame - samples/dll/makefile.unx
Extract wxSTOCK_WITHOUT_ELLIPSIS from wxSTOCK_FOR_BUTTON.
[wxWidgets.git] / samples / dll / makefile.unx
CommitLineData
61aba460
VS
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# =========================================================================
6
7
8
9# -------------------------------------------------------------------------
10# These are configurable options:
11# -------------------------------------------------------------------------
12
13# Location and arguments of wx-config script
14WX_CONFIG ?= wx-config
15
16# Port of the wx library to build against [gtk1,gtk2,msw,x11,motif,mgl,osx_cocoa,osx_carbon,dfb]
17WX_PORT ?= $(shell $(WX_CONFIG) --query-toolkit)
18
19# Use DLL build of wx library to use? [0,1]
20WX_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]
23WX_UNICODE ?= $(shell $(WX_CONFIG) --query-chartype | sed 's/unicode/1/;s/ansi/0/')
24
25# Version of the wx library to build against.
26WX_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
36WX_VERSION_MAJOR = $(shell echo $(WX_VERSION) | cut -c1,1)
37WX_VERSION_MINOR = $(shell echo $(WX_VERSION) | cut -c2,2)
38WX_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
43ifeq ($(WX_UNICODE),0)
44WX_CONFIG_UNICODE_FLAG = --unicode=no
45endif
46ifeq ($(WX_UNICODE),1)
47WX_CONFIG_UNICODE_FLAG = --unicode=yes
48endif
49ifeq ($(WX_SHARED),0)
50WX_CONFIG_SHARED_FLAG = --static=yes
51endif
52ifeq ($(WX_SHARED),1)
53WX_CONFIG_SHARED_FLAG = --static=no
54endif
55
56
57### Targets: ###
58
59all: test_for_selected_wxbuild
60
61install:
62
63uninstall:
64
65clean:
66 rm -f ./*.o
67 rm -f ./*.d
68
69test_for_selected_wxbuild:
70 @$(WX_CONFIG) $(WX_CONFIG_FLAGS)
71
72.PHONY: all install uninstall clean
73
74
75# Dependencies tracking:
76-include ./*.d