diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-02-19 12:42:36 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-02-19 12:42:36 (GMT) |
commit | 4f28c4da36968ee006b46949f96ac48eeec91273 (patch) | |
tree | 94737d162baafc9a0f00acbc7a94d4fab44230d3 /PC/os2emx/Makefile | |
parent | cef2f7cd186c43ca3eca8cfc3abd6a6931999740 (diff) | |
download | cpython-4f28c4da36968ee006b46949f96ac48eeec91273.zip cpython-4f28c4da36968ee006b46949f96ac48eeec91273.tar.gz cpython-4f28c4da36968ee006b46949f96ac48eeec91273.tar.bz2 |
OS/2 EMX build updates for recent CVS changes
Diffstat (limited to 'PC/os2emx/Makefile')
-rw-r--r-- | PC/os2emx/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/PC/os2emx/Makefile b/PC/os2emx/Makefile index 3bf4fc2..10dc9bd 100644 --- a/PC/os2emx/Makefile +++ b/PC/os2emx/Makefile @@ -393,6 +393,7 @@ HARDEXTMODULES= binascii \ cStringI \ _hotshot \ imageop \ + itertool \ md5 \ operator \ pcre \ @@ -531,6 +532,13 @@ _hotshot$(MODULE.EXT): $(OUT)_hotshot$O $(OUT)_hotshot_m.def $(PYTHON.IMPLIB) imageop$(MODULE.EXT): $(OUT)imageop$O $(OUT)imageop_m.def $(PYTHON.IMPLIB) $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) +# itertools needs to be renamed to be useful +itertools$(MODULE.EXT): $(OUT)itertoolsmodule$O $(OUT)itertools_m.def $(PYTHON.IMPLIB) + $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) + +itertool$(MODULE.EXT): itertools$(MODULE.EXT) + cp $^ $@ + md5$(MODULE.EXT): $(OUT)md5module$O $(OUT)md5c$O $(OUT)md5_m.def $(PYTHON.IMPLIB) $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) |