Modules/gcmodule.c \
Modules/signalmodule.c \
Modules/posixmodule.c \
- Modules/threadmodule.c \
- Modules/_sre.c)
+ Modules/threadmodule.c)
SRC.PARSER= $(addprefix $(TOP), \
Parser/acceler.c \
Parser/grammar1.c \
pcre \
regex \
_socket \
+ _sre \
termios \
_testcap \
unicoded \
_weakref \
- xreadlin
+ xreadlin \
+ xxsubtyp
# Python external ($(MODULE.EXT)) modules - can be EASY or HARD
ifeq ($(ZLIB),yes)
_socket$(MODULE.EXT): $(OUT)socketmodule$O $(OUT)_socket_m.def $(PYTHON.IMPLIB)
$(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
+_sre$(MODULE.EXT): $(OUT)_sre$O $(OUT)_sre_m.def $(PYTHON.IMPLIB)
+ $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
+
# _symtable needs to be renamed to be useful
_symtable$(MODULE.EXT): $(OUT)symtablemodule$O $(OUT)_symtable_m.def $(PYTHON.IMPLIB)
$(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
xreadlin$(MODULE.EXT): xreadlines$(MODULE.EXT)
cp $^ $@
+# xxsubtype needs to be renamed to be useful
+xxsubtype$(MODULE.EXT): $(OUT)xxsubtype$O $(OUT)xxsubtype_m.def $(PYTHON.IMPLIB)
+ $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
+
+xxsubtyp$(MODULE.EXT): xxsubtype$(MODULE.EXT)
+ cp $^ $@
+
# - optional modules (requiring other software to be installed)
bsddb$(MODULE.EXT): $(OUT)bsddbmodule$O $(OUT)bsddb_m.def $(PYTHON.IMPLIB)
$(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) -ldb $(LIBS)
extern void inittiming();
extern void initunicodedata();
extern void initxreadlines();
+extern void initxxsubtype();
extern void initzlib();
/* -- ADDMODULE MARKER 1 -- */
{"gc", initgc},
{"os2", initos2},
- {"_sre", init_sre},
{"signal", initsignal},
#ifdef WITH_THREAD
{"thread", initthread},
{"_curses_panel", init_curses_panel},
{"_hotshot", init_hotshot},
{"_locale", init_locale},
+ {"_sre", init_sre},
{"_testcapi", init_testcapi},
{"_weakref", init_weakref},
{"array", initarray},
{"timing", inittiming},
{"unicodedata", initunicodedata},
{"xreadlines", initxreadlines},
+ {"xxsubtype", initxxsubtype},
{"zlib", initzlib},
#ifdef USE_SOCKET
{"_socket", init_socket},