1 #####################==================----------------
3 # Top-Level Makefile for Building Python 2.6 for OS/2 using GCC/EMX
4 # Originally written by Andrew Zabolotny, <bit@eltech.ru> for Python 1.5.2
5 # Modified by Andrew MacIntyre, <andymac@pcug.org.au> for Python 2.6
7 # This makefile was developed for use with [P]GCC/EMX compiler any
8 # version and GNU Make.
10 # The output of the build is a largish Python26.DLL containing the
11 # essential modules of Python and a small Python.exe program to start
12 # the interpreter. When embedding Python within another program, only
13 # Python26.DLL is needed. We also build python_s.a static library (which
14 # 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.
18 # Recommended build order:
19 # make depend (if you have makedep)
21 # make lx (if you have lxlite)
22 # make test (optional)
24 #####################==================----------------
26 # === Compilation mode: debug or release ===
29 # === Assert() enabled ===
32 # === Hard-wire installation location ===
36 # === Optional modules ===
37 # Do you have the InfoZip compression library installed?
39 # Do you have the Ultra Fast Crypt (UFC) library installed?
41 # Do you have the Tcl/Tk library installed?
43 # 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
47 # I have had no success trying to use a DLL version, even when
48 # compiled with multithreading enabled.
50 # 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)
56 # Do you have the ncurses library installed? EMX's BSD curses aren't enough!
58 # Do you have the GDBM library installed?
60 # Do you have the BZ2 compression library installed?
62 # Do you have the OpenSSL libraries installed
65 # === install locations ===
66 # default value of PYTHONHOME
68 # default is to have everything in or under PYTHONHOME
75 CFLAGS
= -Zmt
-Wall
$(INCLUDE
)
78 LDFLAGS
= -Zmt
-Zcrtdll
-L.
-lgcc
79 LDFLAGS.EXE
= $(LDFLAGS
)
80 LDFLAGS.DLL
= $(LDFLAGS
) -Zdll
81 LDFLAGS.A
= $(LDFLAGS
) $(LIBS
)
86 PY_DEF
= -DPy_BUILD_CORE
89 # adjust C compiler settings based on build options
94 CFLAGS
+= -s
-O3
-fomit-frame-pointer
-mprobe
98 ifeq ($(ASSERTIONS
),no
)
101 ifeq ($(FIXED_PYHOME
),yes
)
102 CFLAGS
+= -DPREFIX
=$(DQUOTE
)$(LIB_DIR
)$(DQUOTE
)
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)
111 # if fork() support is required, the main executable must be linked with ld
135 # === Build time resource settings ===
137 # EMX's default number of file handles is 40, which is sometimes insufficient
138 # (the tempfile regression test tries to create 100 temporary files)
141 # 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
152 # === The environment ===
155 SRCPATH
=.
;..
/..
/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)
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
$$$$)
165 ifeq ($(__TMP__
),$$$$)
174 # Compute the "double quote" variable
175 __TMP__
:=$(shell echo
"")
183 #INCLUDE= -I$(subst ;, -I, $(SRCPATH))
184 INCLUDE= -I. -I../../Include
186 # Path to search for .c files
187 vpath %.c .;..;$(SRCPATH)
189 # Top of the package tree
192 # Directory for output files
194 OUT= $(OUTBASE)$(MODE)/
196 # Additional libraries
199 # Utility macro: replacement for $^
200 ^^= $(filter-out %$A,$^)
201 # Use $(L^) to link with all libraries specified as dependencies
202 L^= $(addprefix -l,$(basename $(notdir $(filter %$A,$+))))
206 $(CC) $(CFLAGS.LIB) -c $< -o $@
209 $(LD) $(LDFLAGS.A) -o $@ $(^^) $(L^)
212 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
214 %.pyd: $(OUT)%module$O $(OUT)%_m.def
215 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(PYTHON.IMPLIB) $(LIBS)
218 $(LD) $(LDFLAGS.EXE) -o $@ $(^^) $(L^)
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) >>$@
226 @echo DESCRIPTION $(DQUOTE)$(DESCRIPTION.$(notdir $*)$(MODULE.EXT))$(DQUOTE) >>$@
228 @echo DATA MULTIPLE NONSHARED >>$@
230 @echo init$(notdir $*) >>$@
233 @echo Creating .DEF file: $@
234 @echo NAME $(notdir $*) $(EXETYPE.$(notdir $*).exe) >$@
235 @echo DESCRIPTION $(DQUOTE)$(DESCRIPTION.$(notdir $*).exe)$(DQUOTE) >>$@
236 @echo STACKSIZE 2097152 >>$@
241 PYTHON.LIB= $(PYTHON_LIB)_s$A
242 PYTHON.IMPLIB= $(PYTHON_LIB)$A
244 PYTHON.EXEIMP= $(PYTHON.IMPLIB)
247 PYTHON.EXEIMP= $(PYTHON_LIB).a
250 PYTHON.DLL= $(PYTHON_LIB).dll
251 PYTHON.DEF= $(PYTHON_LIB).def
252 PYTHON.EXE= python.exe
253 PYTHONPM.EXE= pythonpm.exe
255 LIBRARY= $(PYTHON.LIB)
256 LD_LIBRARY= $(PYTHON.IMPLIB)
258 # Additional executable parameters
259 EXETYPE.$(PYTHON.EXE)= WINDOWCOMPAT
260 EXETYPE.$(PYTHONPM.EXE)= WINDOWAPI
261 EXETYPE.$(PGEN.EXE)= WINDOWCOMPAT
262 DESCRIPTION.$(PYTHON.EXE)= Python object-oriented programming language interpreter for OS/2
263 DESCRIPTION.$(PYTHONPM.EXE)= $(DESCRIPTION.$(PYTHON.EXE))
264 DESCRIPTION.$(PGEN.EXE)= Python object-oriented programming language parser generator for OS/2
266 # Module descriptions
267 DESCRIPTION.zlib$(MODULE.EXT)= Python Extension DLL for accessing the InfoZip compression library
268 DESCRIPTION.crypt$(MODULE.EXT)= Python Extension DLL implementing the crypt$(BRO)$(BRC) function
269 DESCRIPTION._tkinter$(MODULE.EXT)= Python Extension DLL for access to Tcl/Tk Environment
270 DESCRIPTION.readline$(MODULE.EXT)= Python Extension DLL for access to GNU ReadLine library
271 DESCRIPTION.bsddb185$(MODULE.EXT)= Python Extension DLL for access to BSD DB (v1.85) library
272 DESCRIPTION._curses$(MODLIB.EXT)= Python Extension DLL for access to ncurses library
273 DESCRIPTION.pyexpat$(MODULE.EXT)= Python Extension DLL for access to expat library
274 DESCRIPTION.bz2$(MODULE.EXT)= Python Extension DLL for accessing the bz2 compression library
277 SRC.OS2EMX= config.c dlfcn.c getpathp.c
278 SRC.MAIN= $(addprefix $(TOP), \
279 Modules/getbuildinfo.c \
281 SRC.MODULES= $(addprefix $(TOP), \
283 Modules/signalmodule.c \
284 Modules/posixmodule.c \
285 Modules/threadmodule.c \
286 Modules/arraymodule.c \
288 Modules/cmathmodule.c \
289 Modules/_codecsmodule.c \
290 Modules/_collectionsmodule.c \
292 Modules/cStringIO.c \
294 Modules/datetimemodule.c \
296 Modules/errnomodule.c \
297 Modules/fcntlmodule.c \
299 Modules/_functoolsmodule.c \
300 Modules/_heapqmodule.c \
302 Modules/itertoolsmodule.c \
303 Modules/_localemodule.c \
304 Modules/mathmodule.c \
306 Modules/md5module.c \
308 Modules/_randommodule.c \
309 Modules/shamodule.c \
310 Modules/sha256module.c \
311 Modules/sha512module.c \
313 Modules/stropmodule.c \
315 Modules/symtablemodule.c \
317 Modules/timemodule.c \
318 Modules/timingmodule.c \
320 Modules/xxsubtype.c \
322 SRC.PARSE1= $(addprefix $(TOP), \
330 Parser/metagrammar.c)
331 SRC.PARSE2= $(addprefix $(TOP), \
334 SRC.PARSER= $(SRC.PARSE1) \
336 SRC.PYTHON= $(addprefix $(TOP), \
337 Python/Python-ast.c \
340 Python/bltinmodule.c \
341 Python/exceptions.c \
346 Python/formatter_string.c \
347 Python/formatter_unicode.c \
349 Python/frozenmain.c \
352 Python/getcompiler.c \
353 Python/getcopyright.c \
354 Python/getplatform.c \
355 Python/getversion.c \
360 Python/modsupport.c \
361 Python/mysnprintf.c \
370 Python/structmember.c \
375 Python/dynload_shlib.c \
378 SRC.OBJECT= $(addprefix $(TOP), \
380 Objects/boolobject.c \
381 Objects/bufferobject.c \
382 Objects/bytearrayobject.c \
383 Objects/bytes_methods.c \
384 Objects/cellobject.c \
385 Objects/classobject.c \
387 Objects/codeobject.c \
388 Objects/complexobject.c \
389 Objects/descrobject.c \
390 Objects/dictobject.c \
391 Objects/enumobject.c \
392 Objects/fileobject.c \
393 Objects/floatobject.c \
394 Objects/frameobject.c \
395 Objects/funcobject.c \
396 Objects/genobject.c \
397 Objects/intobject.c \
398 Objects/iterobject.c \
399 Objects/listobject.c \
400 Objects/longobject.c \
401 Objects/methodobject.c \
402 Objects/moduleobject.c \
405 Objects/rangeobject.c \
406 Objects/setobject.c \
407 Objects/sliceobject.c \
408 Objects/stringobject.c \
409 Objects/structseq.c \
410 Objects/tupleobject.c \
411 Objects/typeobject.c \
412 Objects/unicodeobject.c \
413 Objects/unicodectype.c \
414 Objects/weakrefobject.c)
416 SRC.LIB= $(SRC.OS2EMX) \
422 OBJ.LIB= $(addprefix $(OUT),$(notdir $(SRC.LIB:.c=$O)))
424 SRC.PGEN= $(SRC.PARSE1) \
425 $(addprefix $(TOP), \
426 Objects/obmalloc.c) \
427 $(addprefix $(TOP), \
428 Python/mysnprintf.c) \
429 $(addprefix $(TOP), \
430 Parser/tokenizer_pgen.c \
433 Parser/printgrammar.c \
435 Parser/firstsets.c) \
437 OBJ.PGEN= $(addprefix $(OUT),$(notdir $(SRC.PGEN:.c=$O)))
439 SRC.EXE= $(TOP)Modules/python.c
440 SRC.PMEXE= pythonpm.c
442 # Python modules to be dynamically loaded that:
443 # 1) have only single source file and require no extra libs
444 # 2) use the standard module naming convention
445 # (the 'module' in ?????module.c is assumed)
446 # - these can be built with implicit rules
447 EASYEXTMODULES= fpectl \
453 # Python modules to be dynamically loaded that need explicit build rules
454 # (either multiple source files and/or non-standard module naming)
455 # (NOTE: use shortened names for modules affected by 8 char name limit)
456 HARDEXTMODULES= _hotshot \
461 # Python modules that are used as libraries and therefore must use
465 # Python external ($(MODULE.EXT)) modules - can be EASY or HARD
466 ifeq ($(HAVE_ZLIB),yes)
467 HARDEXTMODULES+= zlib
469 ifeq ($(HAVE_UFC),yes)
470 HARDEXTMODULES+= crypt
472 ifeq ($(HAVE_TCLTK),yes)
473 HARDEXTMODULES+= _tkinter
474 CFLAGS+= -DHAS_DIRENT -I/TclTk80/include
475 TK_LIBS+= -L/TclTk80/lib -ltcl80 -ltk80
477 ifeq ($(HAVE_GREADLINE),yes)
478 HARDEXTMODULES+= readline
480 ifeq ($(HAVE_BSDDB),yes)
481 HARDEXTMODULES+= bsddb185
483 ifeq ($(HAVE_NCURSES),yes)
484 LIBEXTMODULES+= _curses
485 HARDEXTMODULES+= _curses_
487 ifeq ($(HAVE_GDBM),yes)
488 HARDEXTMODULES+= gdbm dbm
490 ifeq ($(HAVE_BZ2),yes)
493 ifeq ($(HAVE_OPENSSL),yes)
494 HARDEXTMODULES+= _ssl
497 # Expat is now distributed with the Python source
498 HARDEXTMODULES+= pyexpat
499 EXPAT.INC= -I../../Modules/expat
500 EXPAT.DEF= -DHAVE_EXPAT_H -DXML_NS=1 -DXML_DTD=1 -DXML_BYTE_ORDER=12 \
501 -DXML_CONTENT_BYTES=1024 -DHAVE_MEMMOVE=1 -DHAVE_BCOPY=1
502 EXPAT.SRC= $(addprefix ../../Modules/expat/, \
507 # all the external modules
508 EXTERNDLLS= $(addsuffix $(MODULE.EXT),$(patsubst %module,%,$(EASYEXTMODULES)))
509 EXTERNDLLS+= $(addsuffix $(MODULE.EXT),$(patsubst %module,%,$(HARDEXTMODULES)))
510 EXTERNDLLS+= $(addsuffix $(MODLIB.EXT),$(patsubst %module,%,$(LIBEXTMODULES)))
513 all: $(OUT) $(PYTHON.LIB) $(PYTHON.DEF) $(PYTHON.IMPLIB) $(PYTHON.DLL) \
517 make PY_DEF= $(PYTHON.EXE) $(PYTHONPM.EXE) $(PGEN.EXE) $(EXTERNDLLS)
521 rm -f $(PYTHON.LIB) $(PYTHON.IMPLIB) $(PYTHON.EXEIMP) $(PYTHON.DLL) \
522 $(PYTHON.EXE) $(PYTHONPM.EXE) $(PGEN.EXE) *$(MODULE.EXT) *.dll
523 find ../../Lib -name "*.py
[co]" -exec rm {} ";"
526 @echo Packing everything with lxLite...
527 lxlite $(PYTHON.DLL) $(PYTHON.EXE) $(PYTHONPM.EXE) $(PGEN.EXE)
530 makedep -f $(OUTBASE)python.dep -o $(BUCK)O -p $(BUCK)\(OUT\) \
531 -r -c $(INCLUDE) $(SRC.LIB) $(SRC.PGEN)
538 $(PYTHON.LIB): $(OBJ.LIB)
540 $(AR) $(ARFLAGS) $@ $^
542 # the Python core DLL .def file needs to have a number of non-static
543 # symbols that aren't part of the Python C API removed (commented out)
544 # from the DLL export list.
545 $(PYTHON.DEF): $(PYTHON.LIB)
546 @echo Creating .DEF file: $@
547 @echo LIBRARY $(PYTHON_LIB) INITINSTANCE TERMINSTANCE >$@
548 @echo DESCRIPTION $(DQUOTE)Python $(PYTHON_VER) Core DLL$(DQUOTE) >>$@
550 @echo DATA MULTIPLE NONSHARED >>$@
552 $(EXPLIB) -u $(PYTHON.LIB) |\
553 sed -e "/^ .init.
*/s
/^
/; /" \
554 -e "/^ .pcre_.
*/s
/^
/; /" \
555 -e "/^ .array_methods
/s
/^
/; /" \
556 -e "/^ .fast_save_leave
/s
/^
/; /" \
557 -e "/^ .dlopen
/s
/^
/; /" \
558 -e "/^ .dlsym
/s
/^
/; /" \
559 -e "/^ .dlclose
/s
/^
/; /" \
560 -e "/^ .dlerror
/s
/^
/; /" \
561 -e "/^ ._Py_re_.
*/s
/^
/; /" \
562 -e "/^ ._Py_MD5.
*/s
/^
/; /" >>$@
564 $(PYTHON.IMPLIB): $(PYTHON.DEF)
567 $(PYTHON.EXEIMP): $(PYTHON.DEF)
570 $(PYTHON.DLL): $(OUT)dllentry$O $(PYTHON.LIB) $(PYTHON.DEF)
572 # Explicit make targets for the .EXEs to be able to use LD to link
573 # (so that fork() will work if required)
575 $(PYTHON.EXE): $(SRC.EXE) $(PYTHON.EXEIMP) $(OUT)python.def
576 $(CC) -Zmt $(LDMODE.EXE) -Zcrtdll -Wall $(INCLUDE) -L. -lgcc -o $@ $(SRC.EXE) $(PYTHON.EXEIMP) $(LIBS) $(OUT)python.def
577 $(EXEOPT) -aq $(PYTHON.EXE) -h$(NFILES)
579 $(PYTHONPM.EXE): $(SRC.PMEXE) $(PYTHON.EXEIMP) $(OUT)pythonpm.def
580 $(CC) -Zmt $(LDMODE.EXE) -Zcrtdll -Wall $(INCLUDE) -L. -lgcc -o $@ $(SRC.PMEXE) $(PYTHON.EXEIMP) $(LIBS) $(OUT)pythonpm.def
581 $(EXEOPT) -aq $(PYTHONPM.EXE) -h$(NFILES)
583 $(PGEN.EXE): $(OBJ.PGEN) $(OUT)pgen.def
585 # Explicit building instructions for those external modules that require
586 # awkward handling (due e.g. to non-std naming, or multiple source files)
589 _hotshot$(MODULE.EXT): $(OUT)_hotshot$O $(OUT)_hotshot_m.def $(PYTHON.IMPLIB)
590 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
592 _socket$(MODULE.EXT): $(OUT)socketmodule$O $(OUT)_socket_m.def $(PYTHON.IMPLIB)
593 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
595 # _testcapi needs to be renamed to be useful
596 _testcapi$(MODULE.EXT): $(OUT)_testcapimodule$O $(OUT)_testcapi_m.def $(PYTHON.IMPLIB)
597 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
599 _testcap$(MODULE.EXT): _testcapi$(MODULE.EXT)
602 # unicodedata needs to be renamed to be useful
603 unicodedata$(MODULE.EXT): $(OUT)unicodedata$O $(OUT)unicodedata_m.def $(PYTHON.IMPLIB)
604 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) $(MODULE_LIBS)
606 unicoded$(MODULE.EXT): unicodedata$(MODULE.EXT)
609 # - optional modules (requiring other software to be installed)
610 bsddb185$(MODULE.EXT): $(OUT)bsddbmodule$O $(OUT)bsddb185_m.def $(PYTHON.IMPLIB)
611 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) -ldb $(LIBS)
613 crypt$(MODULE.EXT): $(OUT)cryptmodule$O $(OUT)crypt_m.def $(PYTHON.IMPLIB)
614 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) -lufc $(LIBS)
616 # The _curses_panel module requires a couple of ncurses library entry
617 # points, which are best exposed as exports from the _curses module DLL
619 @echo Creating .DEF file: $@
620 @echo LIBRARY $(notdir $*) INITINSTANCE TERMINSTANCE >$@
621 @echo DESCRIPTION $(DQUOTE)$(DESCRIPTION.$(notdir $*)$(MODLIB.EXT))$(DQUOTE) >>$@
622 @echo DATA MULTIPLE NONSHARED >>$@
624 @echo init_curses >>$@
625 @echo wnoutrefresh >>$@
626 @echo _nc_panelhook >>$@
627 @echo is_linetouched >>$@
632 $(OUT)_curses_panel_m.def:
633 @echo Creating .DEF file: $@
634 @echo LIBRARY $(notdir $*) INITINSTANCE TERMINSTANCE >$@
635 @echo DESCRIPTION $(DQUOTE)Python standard module $(notdir $*)$(DQUOTE) >>$@
636 @echo DATA MULTIPLE NONSHARED >>$@
638 @echo _curses.wnoutrefresh >>$@
639 @echo _curses._nc_panelhook >>$@
640 @echo _curses.is_linetouched >>$@
641 @echo _curses.mvwin >>$@
642 @echo _curses.stdscr >>$@
643 @echo _curses.wtouchln >>$@
645 @echo init_curses_panel >>$@
647 _curses$(MODLIB.EXT): $(OUT)_cursesmodule$O $(OUT)_curses_m.def $(PYTHON.IMPLIB)
648 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lncurses
650 # curses_panel needs to be renamed to be useful
651 _curses_panel$(MODULE.EXT): $(OUT)_curses_panel$O $(OUT)_curses_panel_m.def $(PYTHON.IMPLIB)
652 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lpanel
654 _curses_$(MODULE.EXT): _curses_panel$(MODULE.EXT)
657 dbm$(MODULE.EXT): $(OUT)dbmmodule$O $(OUT)dbm_m.def $(PYTHON.IMPLIB)
658 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lgdbm
660 gdbm$(MODULE.EXT): $(OUT)gdbmmodule$O $(OUT)gdbm_m.def $(PYTHON.IMPLIB)
661 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lgdbm
664 # Expat is now distributed with Python, so use the included version
665 $(OUT)pyexpat$O: ../../Modules/pyexpat.c
666 $(CC) $(CFLAGS) $(EXPAT.INC) -c -o $@ $^
667 $(OUT)xmlparse$O: ../../Modules/expat/xmlparse.c
668 $(CC) $(CFLAGS) $(EXPAT.INC) $(EXPAT.DEF) -c -o $@ $^
669 $(OUT)xmlrole$O: ../../Modules/expat/xmlrole.c
670 $(CC) $(CFLAGS) $(EXPAT.INC) $(EXPAT.DEF) -c -o $@ $^
671 $(OUT)xmltok$O: ../../Modules/expat/xmltok.c
672 $(CC) $(CFLAGS) $(EXPAT.INC) $(EXPAT.DEF) -c -o $@ $^
673 pyexpat$(MODULE.EXT): $(OUT)pyexpat$O $(OUT)xmlparse$O $(OUT)xmlrole$O \
674 $(OUT)xmltok$O $(OUT)pyexpat_m.def $(PYTHON.IMPLIB)
675 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
677 readline$(MODULE.EXT): $(OUT)readline$O $(OUT)readline_m.def $(PYTHON.IMPLIB)
678 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lreadline -lncurses
680 #_tkinter$(MODULE.EXT): $(OUT)_tkinter$O $(OUT)tclNotify$O $(OUT)tkappinit$O
681 _tkinter$(MODULE.EXT): $(OUT)_tkinter$O $(OUT)tclNotify$O \
682 $(OUT)_tkinter_m.def $(PYTHON.IMPLIB)
683 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) $(TK_LIBS)
685 zlib$(MODULE.EXT): $(OUT)zlibmodule$O $(OUT)zlib_m.def $(PYTHON.IMPLIB)
686 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lz
688 bz2$(MODULE.EXT): $(OUT)bz2module$O $(OUT)bz2_m.def $(PYTHON.IMPLIB)
689 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lbz2
691 _ssl$(MODULE.EXT): $(OUT)_ssl$O $(OUT)_ssl_m.def $(PYTHON.IMPLIB)
692 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) -lssl -lcrypto
696 -find ../../Lib -name "*.py
[co]" -exec rm {} ";"
697 -./python -E -tt ../../lib/test/regrtest.py -l -u "network
"
698 ./python -E -tt ../../lib/test/regrtest.py -l -u "network
"
700 -include $(OUTBASE)python.dep