]> git.saurik.com Git - wxWidgets.git/blame_incremental - samples/opengl/penguin/makefile.unx
Also reset DatePicker property editor's global pointer (fixes #11787)
[wxWidgets.git] / samples / opengl / penguin / makefile.unx
... / ...
CommitLineData
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# C compiler
14CC = gcc
15
16# C++ compiler
17CXX = `$(WX_CONFIG) --cxx`
18
19# Standard flags for CC
20CFLAGS ?=
21
22# Standard flags for C++
23CXXFLAGS ?=
24
25# Standard preprocessor flags (common for CC and CXX)
26CPPFLAGS ?=
27
28# Standard linker flags
29LDFLAGS ?=
30
31# Location and arguments of wx-config script
32WX_CONFIG ?= wx-config
33
34# Port of the wx library to build against [gtk1,gtk2,msw,x11,motif,mgl,osx_cocoa,osx_carbon,dfb]
35WX_PORT ?= $(shell $(WX_CONFIG) --query-toolkit)
36
37# Use DLL build of wx library to use? [0,1]
38WX_SHARED ?= $(shell if test -z `$(WX_CONFIG) --query-linkage`; then echo 1; else echo 0; fi)
39
40# Compile Unicode build of wxWidgets? [0,1]
41WX_UNICODE ?= $(shell $(WX_CONFIG) --query-chartype | sed 's/unicode/1/;s/ansi/0/')
42
43# Version of the wx library to build against.
44WX_VERSION ?= $(shell $(WX_CONFIG) --query-version | sed -e 's/\([0-9]*\)\.\([0-9]*\)/\1\2/')
45
46
47
48# -------------------------------------------------------------------------
49# Do not modify the rest of this file!
50# -------------------------------------------------------------------------
51
52### Variables: ###
53
54CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD -MP
55WX_VERSION_MAJOR = $(shell echo $(WX_VERSION) | cut -c1,1)
56WX_VERSION_MINOR = $(shell echo $(WX_VERSION) | cut -c2,2)
57WX_CONFIG_FLAGS = $(WX_CONFIG_UNICODE_FLAG) $(WX_CONFIG_SHARED_FLAG) \
58 --toolkit=$(WX_PORT) --version=$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR)
59PENGUIN_CFLAGS = -I. `$(WX_CONFIG) --cflags $(WX_CONFIG_FLAGS)` $(CPPFLAGS) \
60 $(CFLAGS)
61PENGUIN_CXXFLAGS = -I. `$(WX_CONFIG) --cxxflags $(WX_CONFIG_FLAGS)` $(CPPFLAGS) \
62 $(CXXFLAGS)
63PENGUIN_OBJECTS = \
64 penguin_penguin.o \
65 penguin_dxfrenderer.o \
66 penguin_trackball.o
67
68### Conditionally set variables: ###
69
70ifeq ($(WX_UNICODE),0)
71WX_CONFIG_UNICODE_FLAG = --unicode=no
72endif
73ifeq ($(WX_UNICODE),1)
74WX_CONFIG_UNICODE_FLAG = --unicode=yes
75endif
76ifeq ($(WX_SHARED),0)
77WX_CONFIG_SHARED_FLAG = --static=yes
78endif
79ifeq ($(WX_SHARED),1)
80WX_CONFIG_SHARED_FLAG = --static=no
81endif
82
83
84### Targets: ###
85
86all: test_for_selected_wxbuild penguin
87
88install:
89
90uninstall:
91
92clean:
93 rm -f ./*.o
94 rm -f ./*.d
95 rm -f penguin
96
97test_for_selected_wxbuild:
98 @$(WX_CONFIG) $(WX_CONFIG_FLAGS)
99
100penguin: $(PENGUIN_OBJECTS)
101 $(CXX) -o $@ $(PENGUIN_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) $(WX_CONFIG_FLAGS) --libs gl,core,base`
102
103penguin_penguin.o: ./penguin.cpp
104 $(CXX) -c -o $@ $(PENGUIN_CXXFLAGS) $(CPPDEPS) $<
105
106penguin_dxfrenderer.o: ./dxfrenderer.cpp
107 $(CXX) -c -o $@ $(PENGUIN_CXXFLAGS) $(CPPDEPS) $<
108
109penguin_trackball.o: ./trackball.c
110 $(CC) -c -o $@ $(PENGUIN_CFLAGS) $(CPPDEPS) $<
111
112.PHONY: all install uninstall clean
113
114
115# Dependencies tracking:
116-include ./*.d