]> git.saurik.com Git - wxWidgets.git/blame - install/gtk/INSTALL
*** empty log message ***
[wxWidgets.git] / install / gtk / INSTALL
CommitLineData
c801d85f
KB
1* General
2----------
3
4wxGTK uses GNU configure. If you have problems with your make use GNU
5make instead.
6
7* Create your configuration
8-----------------------------
9Usage:
10 ./configure options
11
12If you want to use system's C and C++ compiler,
13set environment variables CC and CCC as
14
15 % setenv CC cc
16 % setenv CCC CC
17 % ./configure options
18
19to see all the options please use:
20
21 ./configure --help
22
23The basic philosophy is that if you want to use different
24configurations, like a debug and a release version,
25or use the same source tree on different systems,
26you have only to change the environment variable OSTYPE.
27(Sadly this variable is not set by default on some systems
28in some shells - on SGI's for example). So you will have to
29set it there. This variable HAS to be set before starting
30configure, so that it knows which system it tries to
31configure for.
32
33Configure will complain if the system variable OSTYPE has
34not been defined. And Make in some circumstances as well...
35
36* General options
37-------------------
38
39The following options handle the kind of library you want to build.
40
41 --with-shared Create shared libraries.
42
43 --without-optimise Do not optimise the code.
44
45 --with-profile Add profiling info to the
46 object files. Currently
47 broken.
48
49 --with-mem_tracing Add built-in memory tracing.
50 Not yet.
51
52 --with-debug Add debug info to object
53 files.
54
55* Feature Options
56-------------------
57
58When using the Windows version of wxWindows, it is possible
59to edit the file /include/wx/msw/setup.h in order to enable
60or disable some features of wxWindows so that the resulting
61binaries get smaller.
62
63As I don't yet care for binary size and target mainly at
64producing a shared library, wxGTK's configure system auto-
65matically enables all features, as long as they are already
66implemented.
67
68* Additional libraries
69-----------------------
70
71[Note: Currently wxGTK will compile out-of-the-box
72 with no extra libraries required. Support for
73 OpenGl, threads, Python and hopefully ODBC
74 support will soon be added.]
75
76wxGTK requires the GTK (The Gimp Toolkit) to be installed,
77which probably makes sense.
78
79There will be a few more features of wxGTK, which will
80require further libraries (on some platforms). These
81features will be optional. I hope to teach configure
82to check that out automatically.
83
84Thread support:
85
82052aff 86 Requires pthreads under Linux without glibc or glibc 2.
c801d85f
KB
87
88OpenGl:
89
90 Requires OpenGl or MesaGl.
91
92Python scripting language support:
93
94 Requires Python.
95
96* Compiling
97-------------
98
99First you have to create all makefiles in all subdirectories:
100
101 make makefiles
102
103Dependencies are generated automatically using
104
105 make depend
106
107Now the makefiles are created you can compile everything is as simple
108as typing:
109
110 make
111
112make yourself some coffee, as it will try to compile
113ALL the files in this distribution.
114
115if you want to be more selective:
116
117 make src will build only the base libraries
118 make utils will build the utils
119 make samples will build the samples
120 make other will build the other samples
121 make user will build the files in the directory other
122
123Depending on the configuration of some files, the libraries
124and binaries will be placed in different directories.
125The "global" binaries and libraries will be placed in:
126
127 bin/$(OSTYPE) and
128 lib/$(OSTYPE) respectively
129
130"local" binaries and libraries will be placed in:
131
132 (basedir of that application)/$(OSTYPE).
133
134This is also the place where all the object-files will go.
135
136If you want to conserve disk space by removing unnecessary
137object-files:
138
139 make clean_obj
140
141will do the work for you.
142
143* Creating a new Project
144--------------------------
145
146I propose to put all contributed programs in the directory
147"user", with a directory of its own.
148
149This directory then should include the following files:
150
151Makefile (You can copy this one from any application in samples
152 probably you will not need to edit this one. There is
153 only one case where you might be interested in changing
154 this file, but about that see later.)
155Makefile.in (This is the base application-Makefile template, from
156 which the actual Makefile for each system is created.
157 More about this later)
158
159put ALL your source code along with all the other stuff you need for
160your application in this directory (subdirectories are welcome).
161
162** Something about Makefiles
163------------------------------
164
165On general principle it should only contain ONE line, which is as follows:
166
167 include ../../src/gtk/setup/general/makeapp
168
169this will include all the necessary definitions for creating the applications
170
171the only case where you might want to add another line is the following:
172this version of configure also supports creation of source archives of the
173application for easy distribution and updates to newer version of wxxt.
174 For this purpose all files in the application-directory will be put into
175a gziped tar-file in the full notation user/<your application>/*
176if you want to include some other files that you want "more visible", like
177a README.<yourApp> or a shell script for easy
178compilation/installation/distribution, then you have to add a variable
179
180 DISTRIBUTE_ADDITIONAL=<your files>
181
182to the Makefile.
183So it would look like this:
184
185 DISTRIBUTE_ADDITIONAL=README.TheApp
186 include ../../src/gtk/setup/general/makeapp
187
188As we have already talked about distribution the command to create a
189distribution is:
190
191 make distrib
192
193NOTE: If you are in the base directory of wxxt it will create
194distribution packages for wxxt as well as for all packages in the
195user directory.
196 So if you want to create only packages for the files in user,
197then go to the directory other and type:
198
199 make distrib
200
201or if you only want one application to be created then
202enter the specific directory and type there:
203make distrib
204
205All the distribution files will be put in the directory
206distrib at the base of the wxxt-tree (where also configure
207and template.mak can be found).
208
209** Something about Makefile.in
210--------------------------------
211
212As you have already seen with Makefile, configure makes a lot of use
213if the include statement in make to keep the Makefiles as simple as
214possible.
215
216So basically there are only variables to define and then a include command.
217Exception to this rule is if you have special rules for some stuff...
218These rules should go AFTER the include statement!!!
219
220so the general header looks like this:
221
222 # wxGTK base directory
223 WXBASEDIR=@WXBASEDIR@
224 # set the OS type for compilation
225 OS=@OS@
226 # compile a library only
227 RULE=bin
228
229and the general footer will look like this:
230
231 # include the definitions now
232 include ../../../template.mak
233
234the key variable is RULE, which defines what make should create
235in this directory.
236
237here are some examples:
238
239 RULE description
240 ===========================================================================
241 bin creates a local binary (for a global binary prefix bin with g)
242 additional variables needed:
243 BIN_TARGET this gives the name of your application
244 BIN_OBJ this gives the object files needed to
245 link the application
246 optional variables are:
247 BIN_SRC this gives the list of c/c++ files for
248 which dependencies will be checked.
249 (This can be achieved with: make depend)
250 BIN_LINK this gives commands for additional
251 libraries needed to link the application
252 ---------------------------------------------------------------------------
253 bin2 creates two local binaries (for global binaries prefix bin2 with g)
254 in addition to the variables specified above you MUST also
255 provide the same variables with BIN2_ instead of BIN_
256 ---------------------------------------------------------------------------
257 lib creates a local library (for a global binary prefix bin with g)
258 additional variables needed:
259 LIB_TARGET this gives the name of your library
260 LIB_OBJ this gives the object files needed for
261 the library to be build.
262 optional variables are:
263 LIB_SRC this gives the list of c/c++ files for
264 which dependencies will be checked.
265 libbin and libgbin are also possible and will need in addition
266 the variables from bin
267 ---------------------------------------------------------------------------
268 gslib is similar to lib, but it creates a shared library if the system
269 supports it.
270 additional variables needed:
271 LIB_MAJOR major number of the shared library
272 LIB_MINOR minor number of the shared library
273 ---------------------------------------------------------------------------
274 other additional variables:
275
276 ADD_COMPILE define additional includes/defines that
277 are needed to compile the object files
278 (if you need to reference some directory
279 utils - like wxGrid -, then please
280 reference them with the variables defined
281 in template.mak - e.g.: $(SRCDIR),$(UTILS),
282 $(SAMPLES),$(OTHERS))
283
284 NEEDED_DEFINES lists all the defines that HAVE to be set in
285 /include/wx/setup.h to compile correctly.
286
287 SRC_DIR lists all directories that are needed to
288 compile. (i.e: lists all the directories,
289 where there are source-files.) But it is
290 also needed to clean an object and for
291 machines, for which make does not support
292 VPATH
293
294currently there are the following compiling rules provided:
295object files are created for the following file extensions:
296.c .cc .cpp
297
298Please have a closer look at the Makefiles in this distribution.
299
300* Platforms configure is working with
301---------------------------------------
302
303Please report build succes on any machine. Especially non-
304Linux operating systems (which I don't have).
305
306Original author of the autoconf system for wxxt-1.66 and for this INSTALL
307file:
308
309 Martin Sperl sperl@dsn.ast.univie.ac.at
310
311Ported to wxGTK 0.1:
312
313 Wolfram Gloger wmglo@dent.med.uni-muenchen.de
314
315Thanks alot to both of them.
316
317In the hope that it will be useful,
318
319 Robert Roebling roebling@sun2.ruf.uni-freiburg.de
320
82052aff 321