diff options
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) |