File tree 8 files changed +1135
-125
lines changed
8 files changed +1135
-125
lines changed Original file line number Diff line number Diff line change 1
1
/pg_basebackup
2
2
/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)
20
20
21
21
OBJS =receivelog.o streamutil.o $(WIN32RES )
22
22
23
- all : pg_basebackup pg_receivexlog
23
+ all : pg_basebackup pg_receivexlog pg_recvlogical
24
24
25
25
pg_basebackup : pg_basebackup.o $(OBJS ) | submake-libpq submake-libpgport
26
26
$(CC ) $(CFLAGS ) pg_basebackup.o $(OBJS ) $(libpq_pgport ) $(LDFLAGS ) $(LDFLAGS_EX ) $(LIBS ) -o $@ $(X )
27
27
28
28
pg_receivexlog : pg_receivexlog.o $(OBJS ) | submake-libpq submake-libpgport
29
29
$(CC ) $(CFLAGS ) pg_receivexlog.o $(OBJS ) $(libpq_pgport ) $(LDFLAGS ) $(LDFLAGS_EX ) $(LIBS ) -o $@ $(X )
30
30
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
+
31
34
install : all installdirs
32
35
$(INSTALL_PROGRAM ) pg_basebackup$(X ) ' $(DESTDIR)$(bindir)/pg_basebackup$(X)'
33
36
$(INSTALL_PROGRAM ) pg_receivexlog$(X ) ' $(DESTDIR)$(bindir)/pg_receivexlog$(X)'
37
+ $(INSTALL_PROGRAM ) pg_recvlogical$(X ) ' $(DESTDIR)$(bindir)/pg_recvlogical$(X)'
34
38
35
39
installdirs :
36
40
$(MKDIR_P ) ' $(DESTDIR)$(bindir)'
37
41
38
42
uninstall :
39
43
rm -f ' $(DESTDIR)$(bindir)/pg_basebackup$(X)'
40
44
rm -f ' $(DESTDIR)$(bindir)/pg_receivexlog$(X)'
45
+ rm -f ' $(DESTDIR)$(bindir)/pg_recvlogical$(X)'
41
46
42
47
clean 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 1
1
# src/bin/pg_basebackup/nls.mk
2
2
CATALOG_NAME = pg_basebackup
3
3
AVAIL_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