~ubuntu-branches/ubuntu/raring/codeblocks/raring-proposed

« back to all changes in this revision

Viewing changes to src/plugins/contrib/wxSmith/propgrid/contrib/samples/propgrid/makefile.2.6.1.gcc

  • Committer: Bazaar Package Importer
  • Author(s): Cosme Domínguez Díaz
  • Date: 2010-08-09 04:38:38 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100809043838-a59ygguym4eg0jgw
Tags: 10.05-0ubuntu1
* New upstream release. Closes (LP: #322350)
 - Switch to dpkg-source 3.0 (quilt) format
 - Remove unneeded README.source
 - Add debian/get-source-orig script that removes all
   Windows prebuilt binaries
* Bump Standards-Version to 3.9.1
 - Stop shipping *.la files
* debian/control
 - Add cdbs package as Build-Depend
 - Add libbz2-dev and zlib1g-dev packages as
   Build-Depends (needed by libhelp_plugin.so)
 - Remove dpatch package of Build-Depends
 - Add codeblocks-contrib-debug package
 - Split architecture-independent files of codeblocks
   package in codeblocks-common package
* debian/rules
 - Switch to CDBS rules system
 - Add parallel build support
 - Add a call to debian/get-source-orig script
 - Use lzma compression (saves 23,5 MB of free space)
* debian/patches
 - Refresh 01_codeblocks_plugin_path
 - Add 02_no_Makefiles_in_debian_dir to remove any link
   in codeblocks build system to deleted Makefiles of debian directory
 - Drop 02_ftbfs_gcc44 and 03_ftbfs_glib221 (merged in upstream)
* debian/watch
 - Update to use the new host (berlios.de)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# =========================================================================
2
 
#     This makefile was generated by
3
 
#     Bakefile 0.1.7 (http://bakefile.sourceforge.net)
4
 
#     Do not modify, all changes will be overwritten!
5
 
# =========================================================================
6
 
 
7
 
include ../../../build/msw/config.gcc
8
 
 
9
 
# -------------------------------------------------------------------------
10
 
# Do not modify the rest of this file!
11
 
# -------------------------------------------------------------------------
12
 
 
13
 
### Variables: ###
14
 
 
15
 
WX_RELEASE_NODOT = 26
16
 
OBJS = \
17
 
        gcc_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
18
 
LIBDIRNAME = .\..\..\..\lib\gcc_$(LIBTYPE_SUFFIX)$(CFG)
19
 
SETUPHDIR = \
20
 
        $(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
21
 
PROPGRIDSAMPLE_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(GCCFLAGS) \
22
 
        -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
23
 
        $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
24
 
        $(__UNICODE_DEFINE_p) -I.\..\..\..\include -I$(SETUPHDIR) -W -Wall -I. \
25
 
        $(__DLLFLAG_p) -I.\..\..\..\samples -DNOPCH -I.\..\..\include \
26
 
        $(__RTTIFLAG_4) $(__EXCEPTIONSFLAG_5) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
27
 
        $(CXXFLAGS)
28
 
PROPGRIDSAMPLE_OBJECTS =  \
29
 
        $(OBJS)\propgridsample_sample_rc.o \
30
 
        $(OBJS)\propgridsample_propgridsample.o \
31
 
        $(OBJS)\propgridsample_sampleprops.o
32
 
 
33
 
### Conditionally set variables: ###
34
 
 
35
 
ifeq ($(GCC_VERSION),2.95)
36
 
GCCFLAGS = -fvtable-thunks
37
 
endif
38
 
ifeq ($(USE_GUI),0)
39
 
PORTNAME = base
40
 
endif
41
 
ifeq ($(USE_GUI),1)
42
 
PORTNAME = msw
43
 
endif
44
 
ifeq ($(BUILD),debug)
45
 
ifeq ($(DEBUG_FLAG),default)
46
 
WXDEBUGFLAG = d
47
 
endif
48
 
endif
49
 
ifeq ($(DEBUG_FLAG),1)
50
 
WXDEBUGFLAG = d
51
 
endif
52
 
ifeq ($(UNICODE),1)
53
 
WXUNICODEFLAG = u
54
 
endif
55
 
ifeq ($(WXUNIV),1)
56
 
WXUNIVNAME = univ
57
 
endif
58
 
ifeq ($(SHARED),1)
59
 
WXDLLFLAG = dll
60
 
endif
61
 
ifeq ($(SHARED),0)
62
 
LIBTYPE_SUFFIX = lib
63
 
endif
64
 
ifeq ($(SHARED),1)
65
 
LIBTYPE_SUFFIX = dll
66
 
endif
67
 
ifeq ($(MONOLITHIC),0)
68
 
EXTRALIBS_FOR_BASE = 
69
 
endif
70
 
ifeq ($(MONOLITHIC),1)
71
 
EXTRALIBS_FOR_BASE =  
72
 
endif
73
 
ifeq ($(BUILD),debug)
74
 
__OPTIMIZEFLAG_2 = -O0
75
 
endif
76
 
ifeq ($(BUILD),release)
77
 
__OPTIMIZEFLAG_2 = -O2
78
 
endif
79
 
ifeq ($(USE_THREADS),0)
80
 
__THREADSFLAG_3 = 
81
 
endif
82
 
ifeq ($(USE_THREADS),1)
83
 
__THREADSFLAG_3 = -mthreads
84
 
endif
85
 
ifeq ($(USE_RTTI),0)
86
 
__RTTIFLAG_4 = -fno-rtti
87
 
endif
88
 
ifeq ($(USE_RTTI),1)
89
 
__RTTIFLAG_4 = 
90
 
endif
91
 
ifeq ($(USE_EXCEPTIONS),0)
92
 
__EXCEPTIONSFLAG_5 = -fno-exceptions
93
 
endif
94
 
ifeq ($(USE_EXCEPTIONS),1)
95
 
__EXCEPTIONSFLAG_5 = 
96
 
endif
97
 
ifeq ($(WXUNIV),1)
98
 
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
99
 
endif
100
 
ifeq ($(WXUNIV),1)
101
 
__WXUNIV_DEFINE_p_1 = --define __WXUNIVERSAL__
102
 
endif
103
 
ifeq ($(BUILD),debug)
104
 
ifeq ($(DEBUG_FLAG),default)
105
 
__DEBUG_DEFINE_p = -D__WXDEBUG__
106
 
endif
107
 
endif
108
 
ifeq ($(DEBUG_FLAG),1)
109
 
__DEBUG_DEFINE_p = -D__WXDEBUG__
110
 
endif
111
 
ifeq ($(BUILD),debug)
112
 
ifeq ($(DEBUG_FLAG),default)
113
 
__DEBUG_DEFINE_p_1 = --define __WXDEBUG__
114
 
endif
115
 
endif
116
 
ifeq ($(DEBUG_FLAG),1)
117
 
__DEBUG_DEFINE_p_1 = --define __WXDEBUG__
118
 
endif
119
 
ifeq ($(USE_EXCEPTIONS),0)
120
 
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
121
 
endif
122
 
ifeq ($(USE_EXCEPTIONS),0)
123
 
__EXCEPTIONS_DEFINE_p_1 = --define wxNO_EXCEPTIONS
124
 
endif
125
 
ifeq ($(USE_RTTI),0)
126
 
__RTTI_DEFINE_p = -DwxNO_RTTI
127
 
endif
128
 
ifeq ($(USE_RTTI),0)
129
 
__RTTI_DEFINE_p_1 = --define wxNO_RTTI
130
 
endif
131
 
ifeq ($(USE_THREADS),0)
132
 
__THREAD_DEFINE_p = -DwxNO_THREADS
133
 
endif
134
 
ifeq ($(USE_THREADS),0)
135
 
__THREAD_DEFINE_p_1 = --define wxNO_THREADS
136
 
endif
137
 
ifeq ($(UNICODE),1)
138
 
__UNICODE_DEFINE_p = -D_UNICODE
139
 
endif
140
 
ifeq ($(UNICODE),1)
141
 
__UNICODE_DEFINE_p_1 = --define _UNICODE
142
 
endif
143
 
ifeq ($(SHARED),1)
144
 
__DLLFLAG_p = -DWXUSINGDLL
145
 
endif
146
 
ifeq ($(SHARED),1)
147
 
__DLLFLAG_p_1 = --define WXUSINGDLL
148
 
endif
149
 
ifeq ($(MONOLITHIC),0)
150
 
__WXLIB_ADV_p = \
151
 
        -lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv
152
 
endif
153
 
ifeq ($(MONOLITHIC),0)
154
 
__WXLIB_CORE_p = \
155
 
        -lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
156
 
endif
157
 
ifeq ($(MONOLITHIC),0)
158
 
__WXLIB_BASE_p = \
159
 
        -lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
160
 
endif
161
 
ifeq ($(MONOLITHIC),1)
162
 
__WXLIB_MONO_p = \
163
 
        -lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
164
 
endif
165
 
ifeq ($(USE_GUI),1)
166
 
__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
167
 
endif
168
 
ifeq ($(USE_GUI),1)
169
 
__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
170
 
endif
171
 
ifeq ($(USE_GUI),1)
172
 
__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
173
 
endif
174
 
ifeq ($(MSLU),1)
175
 
__UNICOWS_LIB_p = -lunicows
176
 
endif
177
 
ifeq ($(BUILD),debug)
178
 
ifeq ($(DEBUG_INFO),default)
179
 
__DEBUGINFO = -g
180
 
endif
181
 
endif
182
 
ifeq ($(BUILD),release)
183
 
ifeq ($(DEBUG_INFO),default)
184
 
__DEBUGINFO = 
185
 
endif
186
 
endif
187
 
ifeq ($(DEBUG_INFO),0)
188
 
__DEBUGINFO = 
189
 
endif
190
 
ifeq ($(DEBUG_INFO),1)
191
 
__DEBUGINFO = -g
192
 
endif
193
 
 
194
 
 
195
 
all: $(OBJS)
196
 
$(OBJS):
197
 
        -if not exist $(OBJS) mkdir $(OBJS)
198
 
 
199
 
### Targets: ###
200
 
 
201
 
all: $(OBJS)\propgridsample.exe
202
 
 
203
 
clean: 
204
 
        -if exist $(OBJS)\*.o del $(OBJS)\*.o
205
 
        -if exist $(OBJS)\propgridsample.exe del $(OBJS)\propgridsample.exe
206
 
 
207
 
$(OBJS)\propgridsample.exe: $(PROPGRIDSAMPLE_OBJECTS) $(OBJS)\propgridsample_sample_rc.o
208
 
        $(CXX) -o $@ $(PROPGRIDSAMPLE_OBJECTS) $(LDFLAGS) $(__DEBUGINFO) $(__THREADSFLAG_3) -L$(LIBDIRNAME) -Wl,--subsystem,windows -mwindows  -lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid  -lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_  $(__WXLIB_ADV_p)  $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG)  -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lodbc32
209
 
 
210
 
$(OBJS)\propgridsample_sample_rc.o: ./../../../samples/sample.rc
211
 
        windres --use-temp-file -i$< -o$@   --define __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) --include-dir ./../../../include --include-dir $(SETUPHDIR) --include-dir . $(__DLLFLAG_p_1) --include-dir ./../../../samples
212
 
 
213
 
$(OBJS)\propgridsample_propgridsample.o: ./propgridsample.cpp
214
 
        $(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $<
215
 
 
216
 
$(OBJS)\propgridsample_sampleprops.o: ./sampleprops.cpp
217
 
        $(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $<
218
 
 
219
 
.PHONY: all clean
220