#
# Written by Peter Eisentraut <peter_e@gmx.net>
#
-# $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.7 2001/05/12 17:49:32 petere Exp $
+# $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.8 2001/05/25 14:29:39 momjian Exp $
#
#-------------------------------------------------------------------
-e 's%@INCLUDES@%$(filter -I%, $(CPPFLAGS))%g' \
$< > $@
-install: all
+install: all installdirs
@echo "Installing Python module"
- @if ( $(INSTALL_DATA) pg.py $(python_moduledir) && \
- $(MAKE) -f Makefile install ); then : ; else \
+ @if ( $(INSTALL_DATA) pg.py $(DESTDIR)$(python_moduledir) && \
+ $(MAKE) -f Makefile prefix=$(DESTDIR)$(prefix) install ); then :; else \
echo "*****" ;\
echo "* Skipping the installation of the Python interface module for lack"; \
echo "* of permissions. To install it, change to the directory"; \
echo "*****"; \
fi
+installdirs:
+ $(mkinstalldirs) $(DESTDIR)$(python_moduledir)
+
uninstall:
@echo "*****"; \
echo "* Unfortunately, the Python interface module cannot be uninstalled"; \