Commit 60e42602 authored by Peter Eisentraut's avatar Peter Eisentraut

revert last change

parent cde5fae7
# $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.12 2001/12/03 12:39:44 darcy Exp $ # $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.13 2001/12/13 18:39:04 petere Exp $
subdir = src/interfaces/python subdir = src/interfaces/python
top_builddir = ../../.. top_builddir = ../../..
...@@ -19,23 +19,10 @@ include $(top_srcdir)/src/Makefile.shlib ...@@ -19,23 +19,10 @@ include $(top_srcdir)/src/Makefile.shlib
override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) $(python_includespec) override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) $(python_includespec)
PY_SCRIPTS = pg.py pgdb.py all: all-lib
ifeq ($(with_python_compile), yes)
PY_COMPILED_SCRIPTS = $(PY_SCRIPTS:%.py=%.pyc) $(PY_SCRIPTS:%.py=%.pyo)
else
PY_COMPILED_SCRIPTS =
endif
all: all-lib $(PY_COMPILED_SCRIPTS)
all-lib: libpq-all all-lib: libpq-all
%.pyc: %.py
$(PYTHON) -c "import py_compile; py_compile.compile(\"$<\")"
%.pyo: %.py
$(PYTHON) -O -c "import py_compile; py_compile.compile(\"$<\")"
.PHONY: libpq-all .PHONY: libpq-all
libpq-all: libpq-all:
$(MAKE) -C $(libpq_builddir) all $(MAKE) -C $(libpq_builddir) all
...@@ -51,10 +38,11 @@ install: all installdirs ...@@ -51,10 +38,11 @@ install: all installdirs
echo "$(INSTALL_SHLIB) $(shlib) $(DESTDIR)$(python_moduleexecdir)/_pgmodule$(DLSUFFIX)"; \ echo "$(INSTALL_SHLIB) $(shlib) $(DESTDIR)$(python_moduleexecdir)/_pgmodule$(DLSUFFIX)"; \
$(INSTALL_SHLIB) $(shlib) $(DESTDIR)$(python_moduleexecdir)/_pgmodule$(DLSUFFIX); \ $(INSTALL_SHLIB) $(shlib) $(DESTDIR)$(python_moduleexecdir)/_pgmodule$(DLSUFFIX); \
\ \
for i in $(PY_SCRIPTS) $(PY_COMPILED_SCRIPTS); do \ echo "$(INSTALL_DATA) $(srcdir)/pg.py $(DESTDIR)$(python_moduledir)/pg.py"; \
echo $(INSTALL_DATA) $$i $(python_moduledir); \ $(INSTALL_DATA) $(srcdir)/pg.py $(DESTDIR)$(python_moduledir)/pg.py; \
$(INSTALL_DATA) $$i $(python_moduledir); \ \
done \ echo "$(INSTALL_DATA) $(srcdir)/pgdb.py $(DESTDIR)$(python_moduledir)/pgdb.py"; \
$(INSTALL_DATA) $(srcdir)/pgdb.py $(DESTDIR)$(python_moduledir)/pgdb.py; \
else \ else \
$(install-warning-msg); \ $(install-warning-msg); \
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment