postgresql/src/pl/plpython/Makefile

55 lines
1.4 KiB
Makefile
Raw Normal View History

# $Header: /cvsroot/pgsql/src/pl/plpython/Makefile,v 1.5 2001/05/12 17:49:32 petere Exp $
2001-05-09 15:54:38 -04:00
subdir = src/pl/plpython
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
2001-05-09 15:54:38 -04:00
override CPPFLAGS := -I$(srcdir) -I$(python_includedir) $(CPPFLAGS)
2001-05-09 15:54:38 -04:00
NAME = plpython
SO_MAJOR_VERSION = 0
SO_MINOR_VERSION = 0
OBJS = plpython.o
2001-05-09 15:54:38 -04:00
SHLIB_LINK += $(python_libspec)
# If you have not patched the dynamic loader files as described in the
# README you will have to link these in manually. You may have to add
# more modules. If you have patched the loader, override
# EXTRA_MODULES to be empty.
2001-05-09 15:54:38 -04:00
# version 2.x
ifneq (,$(findstring 2.,$(python_version)))
EXTRA_MODULES = array cmath errno math md5 operator pcre sha time
endif
2001-05-09 15:54:38 -04:00
# version 1.x
ifneq (,$(findstring 1.,$(python_version)))
EXTRA_MODULES = arraymodule cmathmodule errnomodule mathmodule md5module operator shamodule timemodule
endif
2001-05-09 15:54:38 -04:00
SHLIB_LINK += $(addprefix $(python_dynlibdir)/, $(addsuffix $(DLSUFFIX), $(EXTRA_MODULES)))
include $(top_srcdir)/src/Makefile.shlib
2001-05-09 15:54:38 -04:00
all: all-lib
2001-05-09 15:54:38 -04:00
install: all installdirs
$(INSTALL_SHLIB) $(shlib) $(DESTDIR)$(libdir)/plpython$(DLSUFFIX)
2001-05-09 15:54:38 -04:00
installdirs:
$(mkinstalldirs) $(DESTDIR)$(libdir)
2001-05-09 15:54:38 -04:00
uninstall:
rm -f $(DESTDIR)$(libdir)/plpython$(DLSUFFIX)
2001-05-09 15:54:38 -04:00
clean distclean maintainer-clean: clean-lib
rm -f $(OBJS)
@rm -f error.diff feature.diff error.output feature.output test.log
2001-05-09 15:54:38 -04:00
installcheck:
PATH=$(bindir):$$PATH $(SHELL) $(srcdir)/test.sh