mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
558fae16e3
Cygwin with the possible exception of mSQL-interface. Since I don't have mSQL installed, I skipped this tool. Except for dealing with a missing getopt.h (oid2name) and HUGE (seg), the bulk of the patch uses the standard PostgreSQL approach to deal with Windows DLL issues. I tested the build aspect of this patch under Cygwin and Linux without any ill affects. Note that I did not actually attempt to test the code for functionality. The procedure to apply the patch is as follows: $ # save the attachment as /tmp/contrib.patch $ # change directory to the top of the PostgreSQL source tree $ patch -p0 </tmp/contrib.patch Jason
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
# $Header: /cvsroot/pgsql/contrib/intarray/Makefile,v 1.7 2001/06/18 21:38:01 momjian Exp $
|
|
|
|
subdir = contrib/intarray
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
# override libdir to install shlib in contrib not main directory
|
|
libdir := $(libdir)/contrib
|
|
|
|
# shared library parameters
|
|
NAME= _int
|
|
SO_MAJOR_VERSION= 1
|
|
SO_MINOR_VERSION= 0
|
|
|
|
override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
|
|
override DLLLIBS := $(BE_DLLLIBS) $(DLLLIBS)
|
|
|
|
OBJS= _int.o
|
|
|
|
all: all-lib $(NAME).sql
|
|
|
|
# Shared library stuff
|
|
include $(top_srcdir)/src/Makefile.shlib
|
|
|
|
|
|
$(NAME).sql: $(NAME).sql.in
|
|
sed 's,MODULE_PATHNAME,$(libdir)/$(shlib),g' $< >$@
|
|
|
|
.PHONY: submake
|
|
submake:
|
|
$(MAKE) -C $(top_builddir)/src/test/regress pg_regress
|
|
|
|
installcheck: submake
|
|
$(top_builddir)/src/test/regress/pg_regress _int
|
|
|
|
check:
|
|
@echo "'$(MAKE) check' is not supported."
|
|
@echo "Do '$(MAKE) install', then '$(MAKE) installcheck' instead."
|
|
|
|
install: all installdirs install-lib
|
|
$(INSTALL_DATA) $(srcdir)/README.intarray $(docdir)/contrib
|
|
$(INSTALL_DATA) $(NAME).sql $(datadir)/contrib
|
|
|
|
installdirs:
|
|
$(mkinstalldirs) $(docdir)/contrib $(datadir)/contrib $(libdir)
|
|
|
|
uninstall: uninstall-lib
|
|
rm -f $(docdir)/contrib/README.intarray $(datadir)/contrib/$(NAME).sql
|
|
|
|
clean distclean maintainer-clean: clean-lib
|
|
rm -f $(OBJS) $(NAME).sql
|
|
# things created by various check targets
|
|
rm -rf results
|
|
rm -f regression.diffs regression.out
|