diff options
Diffstat (limited to 'PC/os2emx/Makefile')
-rw-r--r-- | PC/os2emx/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/PC/os2emx/Makefile b/PC/os2emx/Makefile index bb32bc5..c0c9807 100644 --- a/PC/os2emx/Makefile +++ b/PC/os2emx/Makefile @@ -437,8 +437,7 @@ EASYEXTMODULES= fpectl \ # Python modules to be dynamically loaded that need explicit build rules # (either multiple source files and/or non-standard module naming) # (NOTE: use shortened names for modules affected by 8 char name limit) -HARDEXTMODULES= _hotshot \ - _socket \ +HARDEXTMODULES= _socket \ _testcap \ unicoded @@ -567,9 +566,6 @@ $(PGEN.EXE): $(OBJ.PGEN) $(OUT)pgen.def # awkward handling (due e.g. to non-std naming, or multiple source files) # - standard modules -_hotshot$(MODULE.EXT): $(OUT)_hotshot$O $(OUT)_hotshot_m.def $(PYTHON.IMPLIB) - $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) - _socket$(MODULE.EXT): $(OUT)socketmodule$O $(OUT)_socket_m.def $(PYTHON.IMPLIB) $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) |