File tree Expand file tree Collapse file tree 8 files changed +1135
-125
lines changed Expand file tree Collapse file tree 8 files changed +1135
-125
lines changed Original file line number Diff line number Diff line change 11/pg_basebackup
22/pg_receivexlog
3+ /pg_recvlogical
Original file line number Diff line number Diff line change @@ -20,24 +20,31 @@ override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS)
2020
2121OBJS =receivelog.o streamutil.o $(WIN32RES )
2222
23- all : pg_basebackup pg_receivexlog
23+ all : pg_basebackup pg_receivexlog pg_recvlogical
2424
2525pg_basebackup : pg_basebackup.o $(OBJS ) | submake-libpq submake-libpgport
2626 $(CC ) $(CFLAGS ) pg_basebackup.o $(OBJS ) $(libpq_pgport ) $(LDFLAGS ) $(LDFLAGS_EX ) $(LIBS ) -o $@ $(X )
2727
2828pg_receivexlog : pg_receivexlog.o $(OBJS ) | submake-libpq submake-libpgport
2929 $(CC ) $(CFLAGS ) pg_receivexlog.o $(OBJS ) $(libpq_pgport ) $(LDFLAGS ) $(LDFLAGS_EX ) $(LIBS ) -o $@ $(X )
3030
31+ pg_recvlogical : pg_recvlogical.o $(OBJS ) | submake-libpq submake-libpgport
32+ $(CC ) $(CFLAGS ) pg_recvlogical.o $(OBJS ) $(libpq_pgport ) $(LDFLAGS ) $(LDFLAGS_EX ) $(LIBS ) -o $@ $(X )
33+
3134install : all installdirs
3235 $(INSTALL_PROGRAM ) pg_basebackup$(X ) ' $(DESTDIR)$(bindir)/pg_basebackup$(X)'
3336 $(INSTALL_PROGRAM ) pg_receivexlog$(X ) ' $(DESTDIR)$(bindir)/pg_receivexlog$(X)'
37+ $(INSTALL_PROGRAM ) pg_recvlogical$(X ) ' $(DESTDIR)$(bindir)/pg_recvlogical$(X)'
3438
3539installdirs :
3640 $(MKDIR_P ) ' $(DESTDIR)$(bindir)'
3741
3842uninstall :
3943 rm -f ' $(DESTDIR)$(bindir)/pg_basebackup$(X)'
4044 rm -f ' $(DESTDIR)$(bindir)/pg_receivexlog$(X)'
45+ rm -f ' $(DESTDIR)$(bindir)/pg_recvlogical$(X)'
4146
4247clean distclean maintainer-clean :
43- rm -f pg_basebackup$(X ) pg_receivexlog$(X ) $(OBJS ) pg_basebackup.o pg_receivexlog.o
48+ rm -f pg_basebackup$(X ) pg_receivexlog$(X ) pg_recvlogical$(X ) \
49+ pg_basebackup.o pg_receivexlog.o pg_recvlogical.o \
50+ $(OBJS )
Original file line number Diff line number Diff line change 11# src/bin/pg_basebackup/nls.mk
22CATALOG_NAME = pg_basebackup
33AVAIL_LANGUAGES = cs de es fr it ja pl pt_BR ru zh_CN
4- GETTEXT_FILES = pg_basebackup.c pg_receivexlog.c receivelog.c streamutil.c ../../common/fe_memutils.c
4+ GETTEXT_FILES = pg_basebackup.c pg_receivexlog.c pg_recvlogical.c receivelog.c streamutil.c ../../common/fe_memutils.c
You can’t perform that action at this time.
0 commit comments