blob: 89529a31b3a15bd13cebb7b8dd37c5a76dcac16e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#----------------------------------------------------------------------------
#
# Postgres-XC GTM recovery makefile
#
# Copyright(c) 2010-2012 Postgres-XC Development Group
#
# src/gtm/recovery/Makefile
#
#-----------------------------------------------------------------------------
top_builddir=../../..
include $(top_builddir)/src/Makefile.global
subdir = src/gtm/recovery
NAME=gtmrecovery
SO_MAJOR_VERSION= 1
SO_MINOR_VERSION= 0
OBJS=register_common.o register_gtm.o replication.o standby_utils.o
OTHERS=../client/libgtmclient.a
all:all-lib
include $(top_srcdir)/src/Makefile.shlib
clean:
rm -f $(OBJS)
rm -f libgtmrecovery.a libgtmrecovery.so libgtmrecovery.so.1 libgtmrecovery.so.1.0
distclean: clean
maintainer-clean: distclean
|