mirror of https://github.com/postgres/postgres
Reviewed-by: Michael Paquier <michael.paquier@gmail.com>pull/14/head
parent
30982be4e5
commit
9fa8b0ee90
@ -1,34 +0,0 @@ |
||||
# contrib/pg_upgrade/Makefile
|
||||
|
||||
PGFILEDESC = "pg_upgrade - an in-place binary upgrade utility"
|
||||
PGAPPICON = win32
|
||||
|
||||
PROGRAM = pg_upgrade
|
||||
OBJS = check.o controldata.o dump.o exec.o file.o function.o info.o \
|
||||
option.o page.o parallel.o pg_upgrade.o relfilenode.o server.o \
|
||||
tablespace.o util.o version.o $(WIN32RES)
|
||||
|
||||
PG_CPPFLAGS = -DFRONTEND -DDLSUFFIX=\"$(DLSUFFIX)\" -I$(srcdir) -I$(libpq_srcdir)
|
||||
PG_LIBS = $(libpq_pgport)
|
||||
|
||||
EXTRA_CLEAN = analyze_new_cluster.sh delete_old_cluster.sh log/ tmp_check/ \
|
||||
pg_upgrade_dump_globals.sql \
|
||||
pg_upgrade_dump_*.custom pg_upgrade_*.log
|
||||
|
||||
ifdef USE_PGXS |
||||
PG_CONFIG = pg_config
|
||||
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
||||
include $(PGXS) |
||||
else |
||||
subdir = contrib/pg_upgrade
|
||||
top_builddir = ../..
|
||||
include $(top_builddir)/src/Makefile.global |
||||
include $(top_srcdir)/contrib/contrib-global.mk |
||||
endif |
||||
|
||||
check: test.sh all |
||||
MAKE=$(MAKE) bindir=$(bindir) libdir=$(libdir) EXTRA_REGRESS_OPTS="$(EXTRA_REGRESS_OPTS)" $(SHELL) $< --install
|
||||
|
||||
# disabled because it upsets the build farm
|
||||
#installcheck: test.sh
|
||||
# MAKE=$(MAKE) bindir=$(bindir) libdir=$(libdir) $(SHELL) $<
|
@ -1,5 +1,3 @@ |
||||
contrib/pg_upgrade/IMPLEMENTATION |
||||
|
||||
------------------------------------------------------------------------------ |
||||
PG_UPGRADE: IN-PLACE UPGRADES FOR POSTGRESQL |
||||
------------------------------------------------------------------------------ |
@ -0,0 +1,42 @@ |
||||
# src/bin/pg_upgrade/Makefile
|
||||
|
||||
PGFILEDESC = "pg_upgrade - an in-place binary upgrade utility"
|
||||
PGAPPICON = win32
|
||||
|
||||
subdir = src/bin/pg_upgrade
|
||||
top_builddir = ../../..
|
||||
include $(top_builddir)/src/Makefile.global |
||||
|
||||
OBJS = check.o controldata.o dump.o exec.o file.o function.o info.o \
|
||||
option.o page.o parallel.o pg_upgrade.o relfilenode.o server.o \
|
||||
tablespace.o util.o version.o $(WIN32RES)
|
||||
|
||||
override CPPFLAGS := -DFRONTEND -DDLSUFFIX=\"$(DLSUFFIX)\" -I$(srcdir) -I$(libpq_srcdir) $(CPPFLAGS) |
||||
|
||||
|
||||
all: pg_upgrade |
||||
|
||||
pg_upgrade: $(OBJS) | submake-libpq submake-libpgport |
||||
$(CC) $(CFLAGS) $^ $(libpq_pgport) $(LDFLAGS) $(LDFLAGS_EX) $(LIBS) -o $@$(X)
|
||||
|
||||
install: all installdirs |
||||
$(INSTALL_PROGRAM) pg_upgrade$(X) '$(DESTDIR)$(bindir)/pg_upgrade$(X)'
|
||||
|
||||
installdirs: |
||||
$(MKDIR_P) '$(DESTDIR)$(bindir)'
|
||||
|
||||
uninstall: |
||||
rm -f '$(DESTDIR)$(bindir)/pg_upgrade$(X)'
|
||||
|
||||
clean distclean maintainer-clean: |
||||
rm -f pg_upgrade$(X) $(OBJS)
|
||||
rm -rf analyze_new_cluster.sh delete_old_cluster.sh log/ tmp_check/ \
|
||||
pg_upgrade_dump_globals.sql \
|
||||
pg_upgrade_dump_*.custom pg_upgrade_*.log
|
||||
|
||||
check: test.sh all |
||||
MAKE=$(MAKE) bindir=$(bindir) libdir=$(libdir) EXTRA_REGRESS_OPTS="$(EXTRA_REGRESS_OPTS)" $(SHELL) $< --install
|
||||
|
||||
# disabled because it upsets the build farm
|
||||
#installcheck: test.sh
|
||||
# MAKE=$(MAKE) bindir=$(bindir) libdir=$(libdir) $(SHELL) $<
|
@ -1,5 +1,3 @@ |
||||
contrib/pg_upgrade/TESTING |
||||
|
||||
The most effective way to test pg_upgrade, aside from testing on user |
||||
data, is by upgrading the PostgreSQL regression database. |
||||
|
Loading…
Reference in new issue