diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index fb5e911..163dc17 100644 --- a/Makefile.in +++ b/Makefile.in @@ -170,6 +170,7 @@ python: $(LIBRARY) buildno $(srcdir)/Modules/getbuildinfo.c $(AR) cr $(LIBRARY) getbuildinfo.o $(RANLIB) $(LIBRARY) + @DGUX_IS_BROKEN@ cd Modules; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \ prefix="$(prefix)" exec_prefix="$(exec_prefix)" \ LIBRARY=../$(LIBRARY) link @@ -191,6 +192,12 @@ $(LIBRARY): $(SUBDIRS) for i in $(SUBDIRS); do \ (cd $$i; $(MAKE) VERSION="$(VERSION)" add2lib); done +# This rule is only here for DG/UX!!! +libpython$(VERSION).so: $(LIBRARY) + test -d dgux || mkdir dgux + (cd dgux;ar x ../$^;ld -G -o ../$@ * ) + /bin/rm -rf ./dgux + $(SUBDIRS): Makefiles Parser: @@ -245,6 +252,8 @@ altbininstall: python fi; \ done $(INSTALL_PROGRAM) python$(EXE) $(BINDIR)/python$(VERSION)$(EXE) + @DGUX_IS_BROKEN@ + test -f libpython$(VERSION).so && $(INSTALL_DATA) libpython$(VERSION).so $(LIBDIR) # Install the manual page maninstall: |