blob: f1e9cdb579f661e12605019d740ba6c89e88498a (
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 client makefile
#
# Copyright(c) 2010-2012 Postgres-XC Development Group
#
# src/gtm/client/Makefile
#
#-----------------------------------------------------------------------------
top_builddir=../../..
include $(top_builddir)/src/Makefile.global
subdir = src/gtm/client
NAME=gtmclient
SO_MAJOR_VERSION= 1
SO_MINOR_VERSION= 0
OBJS=fe-misc.o fe-connect.o pqexpbuffer.o ip.o gtm_client.o fe-protocol.o
LDFLAGS=-L$(top_build_dir)/common -L$(top_build_dir)/libpq
LIBS=-lpthread
all:all-lib
include $(top_srcdir)/src/Makefile.shlib
clean:
rm -f $(OBJS)
rm -f libgtmclient.a libgtmclient.so libgtmclient.so.1 libgtmclient.so.1.0
distclean: clean
maintainer-clean: distclean
|