mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
revert last change
This commit is contained in:
parent
cde5fae7c9
commit
60e42602a0
@ -1,4 +1,4 @@
|
||||
# $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
|
||||
top_builddir = ../../..
|
||||
@ -19,23 +19,10 @@ include $(top_srcdir)/src/Makefile.shlib
|
||||
|
||||
override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) $(python_includespec)
|
||||
|
||||
PY_SCRIPTS = pg.py pgdb.py
|
||||
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: all-lib
|
||||
|
||||
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
|
||||
libpq-all:
|
||||
$(MAKE) -C $(libpq_builddir) all
|
||||
@ -51,10 +38,11 @@ install: all installdirs
|
||||
echo "$(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) $$i $(python_moduledir); \
|
||||
$(INSTALL_DATA) $$i $(python_moduledir); \
|
||||
done \
|
||||
echo "$(INSTALL_DATA) $(srcdir)/pg.py $(DESTDIR)$(python_moduledir)/pg.py"; \
|
||||
$(INSTALL_DATA) $(srcdir)/pg.py $(DESTDIR)$(python_moduledir)/pg.py; \
|
||||
\
|
||||
echo "$(INSTALL_DATA) $(srcdir)/pgdb.py $(DESTDIR)$(python_moduledir)/pgdb.py"; \
|
||||
$(INSTALL_DATA) $(srcdir)/pgdb.py $(DESTDIR)$(python_moduledir)/pgdb.py; \
|
||||
else \
|
||||
$(install-warning-msg); \
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user