blob: 833f3ab7fca07a4a4ecefdf38d7d7507f9a9248c [file] [log] [blame]
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +00001#####################==================----------------
Andrew MacIntyre41d97d62002-02-17 05:23:30 +00002#
Andrew MacIntyre378d3c02004-07-07 13:55:25 +00003# Top-Level Makefile for Building Python 2.4 for OS/2 using GCC/EMX
Andrew MacIntyre41d97d62002-02-17 05:23:30 +00004# Originally written by Andrew Zabolotny, <bit@eltech.ru> for Python 1.5.2
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005# Modified by Andrew MacIntyre, <andymac@pcug.org.au> for Python 2.5
Andrew MacIntyre41d97d62002-02-17 05:23:30 +00006#
7# This makefile was developed for use with [P]GCC/EMX compiler any
8# version and GNU Make.
9#
Thomas Wouters0e3f5912006-08-11 14:57:12 +000010# The output of the build is a largish Python25.DLL containing the
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000011# essential modules of Python and a small Python.exe program to start
12# the interpreter. When embedding Python within another program, only
Thomas Wouters0e3f5912006-08-11 14:57:12 +000013# Python25.DLL is needed. We also build python_s.a static library (which
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000014# can be converted into OMF (.lib) format using emxomf tool) and both
15# python.a and python.lib import libraries. Then the optional
16# extension modules, which are OS/2 DLLs renamed with a PYD file extension.
17#
18# Recommended build order:
19# make depend (if you have makedep)
20# make all
21# make lx (if you have lxlite)
22# make test (optional)
23#
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +000024#####################==================----------------
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000025
26# === Compilation mode: debug or release ===
27MODE= optimize
28#MODE= debug
29# === Assert() enabled ===
Andrew MacIntyred4c9b162003-04-21 14:28:01 +000030ASSERTIONS=no
31#ASSERTIONS=yes
32# === Hard-wire installation location ===
33FIXED_PYHOME=no
34#FIXED_PYHOME=yes
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000035
36# === Optional modules ===
37# Do you have the InfoZip compression library installed?
Andrew MacIntyred4c9b162003-04-21 14:28:01 +000038HAVE_ZLIB= no
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000039# Do you have the Ultra Fast Crypt (UFC) library installed?
Andrew MacIntyred4c9b162003-04-21 14:28:01 +000040HAVE_UFC= no
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000041# Do you have the Tcl/Tk library installed?
Andrew MacIntyred4c9b162003-04-21 14:28:01 +000042HAVE_TCLTK= no
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000043# Do you have the GNU readline library installed?
44# NOTE: I'm using a modified version of Kai Uwe Rommel's port that
45# - is compiled with multithreading enabled
46# - is linked statically
Andrew MacIntyred4c9b162003-04-21 14:28:01 +000047# I have had no success trying to use a DLL version, even when
48# compiled with multithreading enabled.
49HAVE_GREADLINE= no
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000050# Do you have the BSD DB library (v1.85) as included in the EMXBSD package?
51# NOTE: this library needs to be recompiled with a structure member
52# renamed to avoid problems with the multithreaded errno support
53# (there is a structure member called errno, used for shadowing the
54# real errno, which conflicts with the errno redefinition of -Zmt)
Andrew MacIntyred4c9b162003-04-21 14:28:01 +000055HAVE_BSDDB= no
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000056# Do you have the ncurses library installed? EMX's BSD curses aren't enough!
Andrew MacIntyred4c9b162003-04-21 14:28:01 +000057HAVE_NCURSES= no
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000058# Do you have the GDBM library installed?
Andrew MacIntyred4c9b162003-04-21 14:28:01 +000059HAVE_GDBM= no
Andrew MacIntyre978697b2002-12-31 11:18:08 +000060# Do you have the BZ2 compression library installed?
Andrew MacIntyred4c9b162003-04-21 14:28:01 +000061HAVE_BZ2= no
Andrew MacIntyre744b3132005-02-17 12:44:51 +000062# Do you have the OpenSSL libraries installed
63HAVE_OPENSSL= no
Andrew MacIntyred4c9b162003-04-21 14:28:01 +000064
65# === install locations ===
66# default value of PYTHONHOME
Thomas Wouters0e3f5912006-08-11 14:57:12 +000067LIB_DIR=C:/Python25
Andrew MacIntyred4c9b162003-04-21 14:28:01 +000068# default is to have everything in or under PYTHONHOME
69EXE_DIR=$(LIB_DIR)
70DLL_DIR=$(EXE_DIR)
71
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000072
73# === The Tools ===
74CC= gcc
75CFLAGS= -Zmt -Wall $(INCLUDE)
76CFLAGS.LIB= $(CFLAGS)
77LD= gcc
78LDFLAGS= -Zmt -Zcrtdll -L. -lgcc
79LDFLAGS.EXE= $(LDFLAGS)
80LDFLAGS.DLL= $(LDFLAGS) -Zdll
81LDFLAGS.A= $(LDFLAGS) $(LIBS)
82ARFLAGS= crs
83IMPLIB= emximp
84EXPLIB= emxexp
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +000085EXEOPT= emxbind
Andrew MacIntyre4ee893f2003-07-13 13:41:59 +000086PY_DEF= -DPy_BUILD_CORE
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +000087
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000088
89# adjust C compiler settings based on build options
90ifeq ($(MODE),debug)
91 CFLAGS+= -g -O
92 LDFLAGS+= -g
93else
Andrew MacIntyre51578ae2003-12-02 12:21:20 +000094 CFLAGS+= -s -O3 -fomit-frame-pointer -mprobe
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000095 LDFLAGS+= -s
96endif
Andrew MacIntyre4ee893f2003-07-13 13:41:59 +000097CFLAGS+= $(PY_DEF)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +000098ifeq ($(ASSERTIONS),no)
99 CFLAGS+= -DNDEBUG
100endif
Andrew MacIntyred4c9b162003-04-21 14:28:01 +0000101ifeq ($(FIXED_PYHOME),yes)
102 CFLAGS+= -DPREFIX=$(DQUOTE)$(LIB_DIR)$(DQUOTE)
103endif
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000104
105# We're using the OMF format since EMX's ld has a obscure bug
106# because of which it sometimes fails to build relocations
107# in .data segment that point to another .data locations
108# (except for the final linking if the .EXEs)
109OMF= yes
110
111# if fork() support is required, the main executable must be linked with ld
112EXEOMF= no
113
114# File extensions
115MODULE.EXT= .pyd
Andrew MacIntyre51578ae2003-12-02 12:21:20 +0000116MODLIB.EXT= .dll
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000117ifeq ($(OMF),yes)
118 O= .obj
119 A= .lib
120 AR= emxomfar
121 CFLAGS+= -Zomf
122 LDFLAGS+= -Zomf
123 ifeq ($(MODE),debug)
124 ARFLAGS= -p64 crs
125 else
126 ARFLAGS= -p32 crs
127 endif
128else
129 O= .o
130 A= .a
131 AR= ar
132endif
133
Andrew MacIntyreff59f3c2005-01-17 12:18:12 +0000134
135# === Build time resource settings ===
136
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +0000137# EMX's default number of file handles is 40, which is sometimes insufficient
138# (the tempfile regression test tries to create 100 temporary files)
139NFILES=250
140
Andrew MacIntyreff59f3c2005-01-17 12:18:12 +0000141# The default stack size for child threads is 64k bytes, which is
142# insufficient for some applications which do a lot of work in threads
143# (such as Zope, especially in conjunction with Plone).
144# Note that this setting is distinct from the stack size for the main
145# thread, which is set via the %.def rule below.
146# EMX documents that the thread stack size should be at least 32768 bytes;
147# for Zope/Plone at least 128k bytes is recommended.
148# Uncomment & adjust the next line to override the default stack size:
149#CFLAGS+= -DTHREAD_STACK_SIZE=0x20000
150
151
152# === The environment ===
153
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000154# Source file paths
155SRCPATH=.;../../Python;../../Parser;../../Objects;../../Include;../../Modules
156# Python contains the central core, containing the builtins and interpreter.
157# Parser contains Python's Internal Parser and
158# Standalone Parser Generator Program (Shares Some of Python's Modules)
159# Objects contains Python Object Types
160# Modules contains extension Modules (Built-In or as Separate DLLs)
161
162# Unix shells tend to use "$" as delimiter for variable names.
163# Test for this behaviour and set $(BUCK) variable correspondigly ...
164__TMP__:=$(shell echo $$$$)
165ifeq ($(__TMP__),$$$$)
166 BUCK= $$
167 BRO= (
168 BRC= )
169else
170 BUCK= \$$
171 BRO= \(
172 BRC= \)
173endif
174# Compute the "double quote" variable
175__TMP__:=$(shell echo "")
176ifeq ($(__TMP__),"")
177 DQUOTE= "
178else
179 DQUOTE= \"
180endif
181
182# Include paths
183#INCLUDE= -I$(subst ;, -I, $(SRCPATH))
184INCLUDE= -I. -I../../Include
185
186# Path to search for .c files
187vpath %.c .;..;$(SRCPATH)
188
189# Top of the package tree
190TOP= ../../
191
192# Directory for output files
193OUTBASE= out/
194OUT= $(OUTBASE)$(MODE)/
195
196# Additional libraries
197LIBS= -lsocket
198
199# Utility macro: replacement for $^
200^^= $(filter-out %$A,$^)
201# Use $(L^) to link with all libraries specified as dependencies
202L^= $(addprefix -l,$(basename $(notdir $(filter %$A,$+))))
203
204# Build rules
205$(OUT)%$O: %.c
206 $(CC) $(CFLAGS.LIB) -c $< -o $@
207
208%.a:
209 $(LD) $(LDFLAGS.A) -o $@ $(^^) $(L^)
210
211%.dll:
212 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
213
214%.pyd: $(OUT)%module$O $(OUT)%_m.def
215 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(PYTHON.IMPLIB) $(LIBS)
216
217%.exe:
218 $(LD) $(LDFLAGS.EXE) -o $@ $(^^) $(L^)
219
220%_m.def:
221 @echo Creating .DEF file: $@
222 @echo LIBRARY $(notdir $*) INITINSTANCE TERMINSTANCE >$@
223 ifeq ($(DESCRIPTION.$(notdir $*)$(MODULE.EXT)),)
224 @echo DESCRIPTION $(DQUOTE)Python standard module $(notdir $*)$(DQUOTE) >>$@
225 else
226 @echo DESCRIPTION $(DQUOTE)$(DESCRIPTION.$(notdir $*)$(MODULE.EXT))$(DQUOTE) >>$@
227 endif
228 @echo DATA MULTIPLE NONSHARED >>$@
229 @echo EXPORTS >>$@
230 @echo init$(notdir $*) >>$@
231
232%.def:
233 @echo Creating .DEF file: $@
234 @echo NAME $(notdir $*) $(EXETYPE.$(notdir $*).exe) >$@
235 @echo DESCRIPTION $(DQUOTE)$(DESCRIPTION.$(notdir $*).exe)$(DQUOTE) >>$@
Andrew MacIntyreff59f3c2005-01-17 12:18:12 +0000236 @echo STACKSIZE 2097152 >>$@
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000237
238# Output file names
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000239PYTHON_VER= 2.5
240PYTHON_LIB= python25
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000241PYTHON.LIB= $(PYTHON_LIB)_s$A
242PYTHON.IMPLIB= $(PYTHON_LIB)$A
243ifeq ($(EXEOMF),yes)
244 PYTHON.EXEIMP= $(PYTHON.IMPLIB)
245 LDMODE.EXE= -Zomf
246else
247 PYTHON.EXEIMP= $(PYTHON_LIB).a
248 LDMODE.EXE =
249endif
250PYTHON.DLL= $(PYTHON_LIB).dll
251PYTHON.DEF= $(PYTHON_LIB).def
252PYTHON.EXE= python.exe
253PYTHONPM.EXE= pythonpm.exe
254PGEN.EXE= pgen.exe
255LIBRARY= $(PYTHON.LIB)
256LD_LIBRARY= $(PYTHON.IMPLIB)
257
258# Additional executable parameters
259EXETYPE.$(PYTHON.EXE)= WINDOWCOMPAT
260EXETYPE.$(PYTHONPM.EXE)= WINDOWAPI
261EXETYPE.$(PGEN.EXE)= WINDOWCOMPAT
262DESCRIPTION.$(PYTHON.EXE)= Python object-oriented programming language interpreter for OS/2
263DESCRIPTION.$(PYTHONPM.EXE)= $(DESCRIPTION.$(PYTHON.EXE))
264DESCRIPTION.$(PGEN.EXE)= Python object-oriented programming language parser generator for OS/2
265
266# Module descriptions
267DESCRIPTION.zlib$(MODULE.EXT)= Python Extension DLL for accessing the InfoZip compression library
268DESCRIPTION.crypt$(MODULE.EXT)= Python Extension DLL implementing the crypt$(BRO)$(BRC) function
269DESCRIPTION._tkinter$(MODULE.EXT)= Python Extension DLL for access to Tcl/Tk Environment
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000270DESCRIPTION.readline$(MODULE.EXT)= Python Extension DLL for access to GNU ReadLine library
Andrew MacIntyree7a8cad2002-12-04 12:37:17 +0000271DESCRIPTION.bsddb185$(MODULE.EXT)= Python Extension DLL for access to BSD DB (v1.85) library
Andrew MacIntyre51578ae2003-12-02 12:21:20 +0000272DESCRIPTION._curses$(MODLIB.EXT)= Python Extension DLL for access to ncurses library
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000273DESCRIPTION.pyexpat$(MODULE.EXT)= Python Extension DLL for access to expat library
Andrew MacIntyre978697b2002-12-31 11:18:08 +0000274DESCRIPTION.bz2$(MODULE.EXT)= Python Extension DLL for accessing the bz2 compression library
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000275
276# Source files
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000277SRC.OS2EMX= config.c dlfcn.c getpathp.c
278SRC.MAIN= $(addprefix $(TOP), \
279 Modules/getbuildinfo.c \
280 Modules/main.c)
281SRC.MODULES= $(addprefix $(TOP), \
282 Modules/gcmodule.c \
283 Modules/signalmodule.c \
284 Modules/posixmodule.c \
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000285 Modules/threadmodule.c \
286 Modules/arraymodule.c \
287 Modules/binascii.c \
288 Modules/cmathmodule.c \
289 Modules/_codecsmodule.c \
Andrew MacIntyre378d3c02004-07-07 13:55:25 +0000290 Modules/collectionsmodule.c \
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000291 Modules/cPickle.c \
292 Modules/cStringIO.c \
293 Modules/_csv.c \
294 Modules/datetimemodule.c \
295 Modules/dlmodule.c \
296 Modules/errnomodule.c \
297 Modules/fcntlmodule.c \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000298 Modules/_functoolsmodule.c \
Andrew MacIntyre378d3c02004-07-07 13:55:25 +0000299 Modules/_heapqmodule.c \
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000300 Modules/imageop.c \
301 Modules/itertoolsmodule.c \
302 Modules/_localemodule.c \
303 Modules/mathmodule.c \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000304 Modules/md5.c \
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000305 Modules/md5module.c \
306 Modules/operator.c \
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000307 Modules/_randommodule.c \
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000308 Modules/rgbimgmodule.c \
309 Modules/shamodule.c \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000310 Modules/sha256module.c \
311 Modules/sha512module.c \
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000312 Modules/_sre.c \
313 Modules/stropmodule.c \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000314 Modules/_struct.c \
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000315 Modules/symtablemodule.c \
316 Modules/termios.c \
317 Modules/timemodule.c \
318 Modules/timingmodule.c \
319 Modules/_weakref.c \
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000320 Modules/xxsubtype.c \
321 Modules/zipimport.c)
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +0000322SRC.PARSE1= $(addprefix $(TOP), \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000323 Parser/acceler.c \
324 Parser/grammar1.c \
325 Parser/listnode.c \
326 Parser/node.c \
327 Parser/parser.c \
328 Parser/parsetok.c \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000329 Parser/bitset.c \
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +0000330 Parser/metagrammar.c)
331SRC.PARSE2= $(addprefix $(TOP), \
332 Parser/tokenizer.c \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000333 Parser/myreadline.c)
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +0000334SRC.PARSER= $(SRC.PARSE1) \
335 $(SRC.PARSE2)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000336SRC.PYTHON= $(addprefix $(TOP), \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000337 Python/Python-ast.c \
338 Python/asdl.c \
339 Python/ast.c \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000340 Python/bltinmodule.c \
341 Python/exceptions.c \
342 Python/ceval.c \
343 Python/compile.c \
344 Python/codecs.c \
345 Python/errors.c \
346 Python/frozen.c \
347 Python/frozenmain.c \
348 Python/future.c \
349 Python/getargs.c \
350 Python/getcompiler.c \
351 Python/getcopyright.c \
352 Python/getmtime.c \
353 Python/getplatform.c \
354 Python/getversion.c \
355 Python/graminit.c \
356 Python/import.c \
357 Python/importdl.c \
358 Python/marshal.c \
359 Python/modsupport.c \
360 Python/mysnprintf.c \
361 Python/mystrtoul.c \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000362 Python/pyarena.c \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000363 Python/pyfpe.c \
364 Python/pystate.c \
Andrew MacIntyre378d3c02004-07-07 13:55:25 +0000365 Python/pystrtod.c \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000366 Python/pythonrun.c \
367 Python/structmember.c \
368 Python/symtable.c \
369 Python/sysmodule.c \
370 Python/traceback.c \
371 Python/getopt.c \
372 Python/dynload_shlib.c \
373 Python/thread.c)
374SRC.OBJECT= $(addprefix $(TOP), \
375 Objects/abstract.c \
Andrew MacIntyre6c655312002-04-15 12:09:45 +0000376 Objects/boolobject.c \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000377 Objects/bufferobject.c \
378 Objects/cellobject.c \
379 Objects/classobject.c \
380 Objects/cobject.c \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000381 Objects/codeobject.c \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000382 Objects/complexobject.c \
383 Objects/descrobject.c \
384 Objects/dictobject.c \
Andrew MacIntyre07c639f2002-04-30 13:06:32 +0000385 Objects/enumobject.c \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000386 Objects/fileobject.c \
387 Objects/floatobject.c \
388 Objects/frameobject.c \
389 Objects/funcobject.c \
Andrew MacIntyre378d3c02004-07-07 13:55:25 +0000390 Objects/genobject.c \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000391 Objects/intobject.c \
392 Objects/iterobject.c \
393 Objects/listobject.c \
394 Objects/longobject.c \
395 Objects/methodobject.c \
396 Objects/moduleobject.c \
397 Objects/object.c \
Andrew MacIntyre6c655312002-04-15 12:09:45 +0000398 Objects/obmalloc.c \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000399 Objects/rangeobject.c \
Andrew MacIntyre378d3c02004-07-07 13:55:25 +0000400 Objects/setobject.c \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000401 Objects/sliceobject.c \
402 Objects/stringobject.c \
403 Objects/structseq.c \
404 Objects/tupleobject.c \
405 Objects/typeobject.c \
406 Objects/unicodeobject.c \
407 Objects/unicodectype.c \
408 Objects/weakrefobject.c)
409
410SRC.LIB= $(SRC.OS2EMX) \
411 $(SRC.MAIN) \
412 $(SRC.PARSER) \
413 $(SRC.OBJECT) \
414 $(SRC.PYTHON) \
415 $(SRC.MODULES)
416OBJ.LIB= $(addprefix $(OUT),$(notdir $(SRC.LIB:.c=$O)))
417
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +0000418SRC.PGEN= $(SRC.PARSE1) \
419 $(addprefix $(TOP), \
420 Objects/obmalloc.c) \
421 $(addprefix $(TOP), \
422 Python/mysnprintf.c) \
423 $(addprefix $(TOP), \
424 Parser/tokenizer_pgen.c \
425 Parser/pgenmain.c \
426 Parser/pgen.c \
427 Parser/printgrammar.c \
428 Parser/grammar.c \
429 Parser/firstsets.c) \
430
431OBJ.PGEN= $(addprefix $(OUT),$(notdir $(SRC.PGEN:.c=$O)))
432
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000433SRC.EXE= $(TOP)Modules/python.c
434SRC.PMEXE= pythonpm.c
435
436# Python modules to be dynamically loaded that:
437# 1) have only single source file and require no extra libs
438# 2) use the standard module naming convention
439# (the 'module' in ?????module.c is assumed)
440# - these can be built with implicit rules
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000441EASYEXTMODULES= fpectl \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000442 fpetest \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000443 parser \
444 pwd \
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000445 select
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000446
447# Python modules to be dynamically loaded that need explicit build rules
448# (either multiple source files and/or non-standard module naming)
449# (NOTE: use shortened names for modules affected by 8 char name limit)
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000450HARDEXTMODULES= _hotshot \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000451 _socket \
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000452 _testcap \
Andrew MacIntyre631e87f2003-04-21 14:33:04 +0000453 unicoded
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000454
Andrew MacIntyre51578ae2003-12-02 12:21:20 +0000455# Python modules that are used as libraries and therefore must use
456# a .DLL extension
457LIBEXTMODULES=
458
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000459# Python external ($(MODULE.EXT)) modules - can be EASY or HARD
Andrew MacIntyred4c9b162003-04-21 14:28:01 +0000460ifeq ($(HAVE_ZLIB),yes)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000461 HARDEXTMODULES+= zlib
462endif
Andrew MacIntyred4c9b162003-04-21 14:28:01 +0000463ifeq ($(HAVE_UFC),yes)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000464 HARDEXTMODULES+= crypt
465endif
Andrew MacIntyred4c9b162003-04-21 14:28:01 +0000466ifeq ($(HAVE_TCLTK),yes)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000467 HARDEXTMODULES+= _tkinter
468 CFLAGS+= -DHAS_DIRENT -I/TclTk80/include
469 TK_LIBS+= -L/TclTk80/lib -ltcl80 -ltk80
470endif
Andrew MacIntyred4c9b162003-04-21 14:28:01 +0000471ifeq ($(HAVE_GREADLINE),yes)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000472 HARDEXTMODULES+= readline
473endif
Andrew MacIntyred4c9b162003-04-21 14:28:01 +0000474ifeq ($(HAVE_BSDDB),yes)
Andrew MacIntyree7a8cad2002-12-04 12:37:17 +0000475 HARDEXTMODULES+= bsddb185
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000476endif
Andrew MacIntyred4c9b162003-04-21 14:28:01 +0000477ifeq ($(HAVE_NCURSES),yes)
Andrew MacIntyre51578ae2003-12-02 12:21:20 +0000478 LIBEXTMODULES+= _curses
479 HARDEXTMODULES+= _curses_
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000480endif
Andrew MacIntyred4c9b162003-04-21 14:28:01 +0000481ifeq ($(HAVE_GDBM),yes)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000482 HARDEXTMODULES+= gdbm dbm
483endif
Andrew MacIntyred4c9b162003-04-21 14:28:01 +0000484ifeq ($(HAVE_BZ2),yes)
Andrew MacIntyre978697b2002-12-31 11:18:08 +0000485 HARDEXTMODULES+= bz2
486endif
Andrew MacIntyre744b3132005-02-17 12:44:51 +0000487ifeq ($(HAVE_OPENSSL),yes)
488 HARDEXTMODULES+= _ssl
489endif
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000490
Andrew MacIntyre978697b2002-12-31 11:18:08 +0000491# Expat is now distributed with the Python source
492HARDEXTMODULES+= pyexpat
493EXPAT.INC= -I../../Modules/expat
494EXPAT.DEF= -DHAVE_EXPAT_H -DXML_NS=1 -DXML_DTD=1 -DXML_BYTE_ORDER=12 \
Andrew MacIntyre4d046392003-12-25 13:25:20 +0000495 -DXML_CONTENT_BYTES=1024 -DHAVE_MEMMOVE=1 -DHAVE_BCOPY=1
Andrew MacIntyre978697b2002-12-31 11:18:08 +0000496EXPAT.SRC= $(addprefix ../../Modules/expat/, \
497 xmlparse.c \
498 xmlrole.c \
499 xmltok.c)
500
501# all the external modules
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000502EXTERNDLLS= $(addsuffix $(MODULE.EXT),$(patsubst %module,%,$(EASYEXTMODULES)))
503EXTERNDLLS+= $(addsuffix $(MODULE.EXT),$(patsubst %module,%,$(HARDEXTMODULES)))
Andrew MacIntyre51578ae2003-12-02 12:21:20 +0000504EXTERNDLLS+= $(addsuffix $(MODLIB.EXT),$(patsubst %module,%,$(LIBEXTMODULES)))
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000505
506# Targets
507all: $(OUT) $(PYTHON.LIB) $(PYTHON.DEF) $(PYTHON.IMPLIB) $(PYTHON.DLL) \
Andrew MacIntyre4ee893f2003-07-13 13:41:59 +0000508 python_noncore
509
510python_noncore:
511 make PY_DEF= $(PYTHON.EXE) $(PYTHONPM.EXE) $(PGEN.EXE) $(EXTERNDLLS)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000512
513clean:
514 rm -f $(OUT)*
515 rm -f $(PYTHON.LIB) $(PYTHON.IMPLIB) $(PYTHON.EXEIMP) $(PYTHON.DLL) \
Andrew MacIntyre378d3c02004-07-07 13:55:25 +0000516 $(PYTHON.EXE) $(PYTHONPM.EXE) $(PGEN.EXE) *$(MODULE.EXT) *.dll
Andrew MacIntyre4ee893f2003-07-13 13:41:59 +0000517 find ../../Lib -name "*.py[co]" -exec rm {} ";"
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000518
519lx:
520 @echo Packing everything with lxLite...
521 lxlite $(PYTHON.DLL) $(PYTHON.EXE) $(PYTHONPM.EXE) $(PGEN.EXE)
522
523depend: $(OUTBASE)
524 makedep -f $(OUTBASE)python.dep -o $(BUCK)O -p $(BUCK)\(OUT\) \
525 -r -c $(INCLUDE) $(SRC.LIB) $(SRC.PGEN)
526
527$(OUT): $(OUTBASE)
528
529$(OUT) $(OUTBASE):
530 mkdir.exe $@
531
532$(PYTHON.LIB): $(OBJ.LIB)
533 rm.exe -f $@
534 $(AR) $(ARFLAGS) $@ $^
535
Andrew MacIntyre4ee893f2003-07-13 13:41:59 +0000536# the Python core DLL .def file needs to have a number of non-static
537# symbols that aren't part of the Python C API removed (commented out)
538# from the DLL export list.
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000539$(PYTHON.DEF): $(PYTHON.LIB)
540 @echo Creating .DEF file: $@
541 @echo LIBRARY $(PYTHON_LIB) INITINSTANCE TERMINSTANCE >$@
542 @echo DESCRIPTION $(DQUOTE)Python $(PYTHON_VER) Core DLL$(DQUOTE) >>$@
543 @echo PROTMODE >>$@
544 @echo DATA MULTIPLE NONSHARED >>$@
545 @echo EXPORTS >>$@
Andrew MacIntyre4ee893f2003-07-13 13:41:59 +0000546 $(EXPLIB) -u $(PYTHON.LIB) |\
Andrew MacIntyrebac1ea92003-07-16 13:31:11 +0000547 sed -e "/^ .init.*/s/^ /; /" \
548 -e "/^ .pcre_.*/s/^ /; /" \
549 -e "/^ .array_methods/s/^ /; /" \
550 -e "/^ .fast_save_leave/s/^ /; /" \
551 -e "/^ .dlopen/s/^ /; /" \
552 -e "/^ .dlsym/s/^ /; /" \
553 -e "/^ .dlclose/s/^ /; /" \
554 -e "/^ .dlerror/s/^ /; /" \
555 -e "/^ ._Py_re_.*/s/^ /; /" \
556 -e "/^ ._Py_MD5.*/s/^ /; /" >>$@
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000557
558$(PYTHON.IMPLIB): $(PYTHON.DEF)
559 $(IMPLIB) -o $@ $^
560
561$(PYTHON.EXEIMP): $(PYTHON.DEF)
562 $(IMPLIB) -o $@ $^
563
564$(PYTHON.DLL): $(OUT)dllentry$O $(PYTHON.LIB) $(PYTHON.DEF)
565
566# Explicit make targets for the .EXEs to be able to use LD to link
567# (so that fork() will work if required)
568
569$(PYTHON.EXE): $(SRC.EXE) $(PYTHON.EXEIMP) $(OUT)python.def
570 $(CC) -Zmt $(LDMODE.EXE) -Zcrtdll -Wall $(INCLUDE) -L. -lgcc -o $@ $(SRC.EXE) $(PYTHON.EXEIMP) $(LIBS) $(OUT)python.def
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +0000571 $(EXEOPT) -aq $(PYTHON.EXE) -h$(NFILES)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000572
573$(PYTHONPM.EXE): $(SRC.PMEXE) $(PYTHON.EXEIMP) $(OUT)pythonpm.def
574 $(CC) -Zmt $(LDMODE.EXE) -Zcrtdll -Wall $(INCLUDE) -L. -lgcc -o $@ $(SRC.PMEXE) $(PYTHON.EXEIMP) $(LIBS) $(OUT)pythonpm.def
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +0000575 $(EXEOPT) -aq $(PYTHONPM.EXE) -h$(NFILES)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000576
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +0000577$(PGEN.EXE): $(OBJ.PGEN) $(OUT)pgen.def
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000578
579# Explicit building instructions for those external modules that require
580# awkward handling (due e.g. to non-std naming, or multiple source files)
581# - standard modules
Andrew MacIntyred4c9b162003-04-21 14:28:01 +0000582
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000583_hotshot$(MODULE.EXT): $(OUT)_hotshot$O $(OUT)_hotshot_m.def $(PYTHON.IMPLIB)
584 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
585
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000586_socket$(MODULE.EXT): $(OUT)socketmodule$O $(OUT)_socket_m.def $(PYTHON.IMPLIB)
587 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
588
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000589# _testcapi needs to be renamed to be useful
590_testcapi$(MODULE.EXT): $(OUT)_testcapimodule$O $(OUT)_testcapi_m.def $(PYTHON.IMPLIB)
591 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
592
593_testcap$(MODULE.EXT): _testcapi$(MODULE.EXT)
594 cp $^ $@
595
596# unicodedata needs to be renamed to be useful
597unicodedata$(MODULE.EXT): $(OUT)unicodedata$O $(OUT)unicodedata_m.def $(PYTHON.IMPLIB)
598 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) $(MODULE_LIBS)
599
600unicoded$(MODULE.EXT): unicodedata$(MODULE.EXT)
601 cp $^ $@
602
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000603# - optional modules (requiring other software to be installed)
Andrew MacIntyree7a8cad2002-12-04 12:37:17 +0000604bsddb185$(MODULE.EXT): $(OUT)bsddbmodule$O $(OUT)bsddb185_m.def $(PYTHON.IMPLIB)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000605 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) -ldb $(LIBS)
606
607crypt$(MODULE.EXT): $(OUT)cryptmodule$O $(OUT)crypt_m.def $(PYTHON.IMPLIB)
608 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) -lufc $(LIBS)
609
610# The _curses_panel module requires a couple of ncurses library entry
611# points, which are best exposed as exports from the _curses module DLL
612$(OUT)_curses_m.def:
613 @echo Creating .DEF file: $@
614 @echo LIBRARY $(notdir $*) INITINSTANCE TERMINSTANCE >$@
Andrew MacIntyre51578ae2003-12-02 12:21:20 +0000615 @echo DESCRIPTION $(DQUOTE)$(DESCRIPTION.$(notdir $*)$(MODLIB.EXT))$(DQUOTE) >>$@
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000616 @echo DATA MULTIPLE NONSHARED >>$@
617 @echo EXPORTS >>$@
618 @echo init_curses >>$@
619 @echo wnoutrefresh >>$@
620 @echo _nc_panelhook >>$@
621 @echo is_linetouched >>$@
622 @echo mvwin >>$@
623 @echo stdscr >>$@
624 @echo wtouchln >>$@
625
626$(OUT)_curses_panel_m.def:
627 @echo Creating .DEF file: $@
628 @echo LIBRARY $(notdir $*) INITINSTANCE TERMINSTANCE >$@
629 @echo DESCRIPTION $(DQUOTE)Python standard module $(notdir $*)$(DQUOTE) >>$@
630 @echo DATA MULTIPLE NONSHARED >>$@
631 @echo IMPORTS >>$@
632 @echo _curses.wnoutrefresh >>$@
633 @echo _curses._nc_panelhook >>$@
634 @echo _curses.is_linetouched >>$@
635 @echo _curses.mvwin >>$@
636 @echo _curses.stdscr >>$@
637 @echo _curses.wtouchln >>$@
638 @echo EXPORTS >>$@
639 @echo init_curses_panel >>$@
640
Andrew MacIntyre51578ae2003-12-02 12:21:20 +0000641_curses$(MODLIB.EXT): $(OUT)_cursesmodule$O $(OUT)_curses_m.def $(PYTHON.IMPLIB)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000642 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lncurses
643
644# curses_panel needs to be renamed to be useful
645_curses_panel$(MODULE.EXT): $(OUT)_curses_panel$O $(OUT)_curses_panel_m.def $(PYTHON.IMPLIB)
646 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lpanel
647
648_curses_$(MODULE.EXT): _curses_panel$(MODULE.EXT)
649 cp $^ $@
650
651dbm$(MODULE.EXT): $(OUT)dbmmodule$O $(OUT)dbm_m.def $(PYTHON.IMPLIB)
652 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lgdbm
653
654gdbm$(MODULE.EXT): $(OUT)gdbmmodule$O $(OUT)gdbm_m.def $(PYTHON.IMPLIB)
655 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lgdbm
656
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000657
Andrew MacIntyre978697b2002-12-31 11:18:08 +0000658# Expat is now distributed with Python, so use the included version
659$(OUT)pyexpat$O: ../../Modules/pyexpat.c
660 $(CC) $(CFLAGS) $(EXPAT.INC) -c -o $@ $^
661$(OUT)xmlparse$O: ../../Modules/expat/xmlparse.c
662 $(CC) $(CFLAGS) $(EXPAT.INC) $(EXPAT.DEF) -c -o $@ $^
663$(OUT)xmlrole$O: ../../Modules/expat/xmlrole.c
664 $(CC) $(CFLAGS) $(EXPAT.INC) $(EXPAT.DEF) -c -o $@ $^
665$(OUT)xmltok$O: ../../Modules/expat/xmltok.c
666 $(CC) $(CFLAGS) $(EXPAT.INC) $(EXPAT.DEF) -c -o $@ $^
667pyexpat$(MODULE.EXT): $(OUT)pyexpat$O $(OUT)xmlparse$O $(OUT)xmlrole$O \
668 $(OUT)xmltok$O $(OUT)pyexpat_m.def $(PYTHON.IMPLIB)
669 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000670
671readline$(MODULE.EXT): $(OUT)readline$O $(OUT)readline_m.def $(PYTHON.IMPLIB)
672 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lreadline -lncurses
673
674#_tkinter$(MODULE.EXT): $(OUT)_tkinter$O $(OUT)tclNotify$O $(OUT)tkappinit$O
675_tkinter$(MODULE.EXT): $(OUT)_tkinter$O $(OUT)tclNotify$O \
Andrew MacIntyre4ee893f2003-07-13 13:41:59 +0000676 $(OUT)_tkinter_m.def $(PYTHON.IMPLIB)
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000677 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) $(TK_LIBS)
678
679zlib$(MODULE.EXT): $(OUT)zlibmodule$O $(OUT)zlib_m.def $(PYTHON.IMPLIB)
680 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lz
681
Andrew MacIntyre978697b2002-12-31 11:18:08 +0000682bz2$(MODULE.EXT): $(OUT)bz2module$O $(OUT)bz2_m.def $(PYTHON.IMPLIB)
683 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lbz2
684
Andrew MacIntyre744b3132005-02-17 12:44:51 +0000685_ssl$(MODULE.EXT): $(OUT)_ssl$O $(OUT)_ssl_m.def $(PYTHON.IMPLIB)
686 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lssl -lcrypto
687
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000688# the test target
689test:
Andrew MacIntyre978697b2002-12-31 11:18:08 +0000690 -find ../../Lib -name "*.py[co]" -exec rm {} ";"
691 -./python -E -tt ../../lib/test/regrtest.py -l -u "network"
Andrew MacIntyre4fffdff2002-08-18 06:26:33 +0000692 ./python -E -tt ../../lib/test/regrtest.py -l -u "network"
Andrew MacIntyre41d97d62002-02-17 05:23:30 +0000693
694-include $(OUTBASE)python.dep