OSDN Git Service

Fix typo.
[pg-rex/syncrep.git] / src / interfaces / libpq / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile for src/interfaces/libpq library
4 #
5 # Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
6 # Portions Copyright (c) 1994, Regents of the University of California
7 #
8 # $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.143 2006/04/11 20:26:40 neilc Exp $
9 #
10 #-------------------------------------------------------------------------
11
12 subdir = src/interfaces/libpq
13 top_builddir = ../../..
14 include $(top_builddir)/src/Makefile.global
15
16
17 # shared library parameters
18 NAME= pq
19 SO_MAJOR_VERSION= 4
20 SO_MINOR_VERSION= 2
21 DLTYPE= library
22
23 override CPPFLAGS :=  -DFRONTEND -I$(srcdir) $(CPPFLAGS) -I$(top_builddir)/src/port
24 ifneq ($(PORTNAME), win32)
25 override CFLAGS += $(PTHREAD_CFLAGS)
26 endif
27
28 # Need to recompile any libpgport object files because we need these
29 # object files to use the same compile flags as libpq.  If we used
30 # the object files from libpgport, this would not be true on all
31 # platforms.
32 LIBS := $(patsubst -lpgport,, $(LIBS))
33
34 OBJS=   fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o \
35         fe-protocol2.o fe-protocol3.o pqexpbuffer.o pqsignal.o fe-secure.o \
36         md5.o ip.o wchar.o encnames.o noblock.o pgstrcasecmp.o thread.o \
37         $(filter crypt.o getaddrinfo.o inet_aton.o open.o snprintf.o strerror.o, $(LIBOBJS))
38
39 ifeq ($(PORTNAME), cygwin)
40 override shlib = cyg$(NAME)$(DLSUFFIX)
41 endif
42
43 ifeq ($(PORTNAME), win32)
44 OBJS += win32.o libpqrc.o
45 DLL_DEFFILE=libpqdll.def
46
47 libpqrc.o: libpq.rc
48         windres -i libpq.rc -o libpqrc.o
49
50 ifeq ($(enable_thread_safety), yes)
51 OBJS += pthread-win32.o
52 endif
53 endif
54
55
56 # Add libraries that libpq depends (or might depend) on into the
57 # shared library link.  (The order in which you list them here doesn't
58 # matter.)
59 ifneq ($(PORTNAME), win32)
60 SHLIB_LINK += $(filter -lcrypt -ldes -lcom_err -lcrypto -lk5crypto -lkrb5 -lssl -lsocket -lnsl -lresolv -lintl, $(LIBS)) $(PTHREAD_LIBS)
61 else
62 SHLIB_LINK += $(filter -lcrypt -ldes -lcom_err -lcrypto -lk5crypto -lkrb5 -lssl -lsocket -lnsl -lresolv -lintl $(PTHREAD_LIBS), $(LIBS))
63 endif
64 ifeq ($(PORTNAME), win32)
65 SHLIB_LINK += -lshfolder -lwsock32 -lws2_32 $(filter -leay32 -lssleay32 -lcomerr32 -lkrb5_32, $(LIBS))
66 endif
67
68
69 all: def-files $(srcdir)/libpq.rc all-lib
70
71 # Shared library stuff
72 include $(top_srcdir)/src/Makefile.shlib
73 backend_src = $(top_srcdir)/src/backend
74
75
76 # We use several backend modules verbatim, but since we need to
77 # compile with appropriate options to build a shared lib, we can't
78 # necessarily use the same object files as the backend uses. Instead,
79 # symlink the source files in here and build our own object file.
80 # For port modules, this only happens if configure decides the module
81 # is needed (see filter hack in OBJS, above).
82
83 crypt.c getaddrinfo.c inet_aton.c noblock.c pgstrcasecmp.c snprintf.c strerror.c open.c thread.c: % : $(top_srcdir)/src/port/%
84         rm -f $@ && $(LN_S) $< .
85
86 md5.c ip.c: % : $(backend_src)/libpq/%
87         rm -f $@ && $(LN_S) $< .
88
89 encnames.c wchar.c : % : $(backend_src)/utils/mb/%
90         rm -f $@ && $(LN_S) $< .
91
92
93 # We need several not-quite-identical variants of .DEF files to build libpq
94 # DLLs for Windows.  These are made from the single source file exports.txt.
95 # Since we can't assume that Windows boxes will have sed, the .DEF files are
96 # always built and included in distribution tarballs.
97
98 distprep: def-files $(srcdir)/libpq.rc
99
100 .PHONY: def-files
101
102 def-files: $(srcdir)/libpqdll.def $(srcdir)/libpqddll.def $(srcdir)/blibpqdll.def
103
104 $(srcdir)/libpqdll.def: exports.txt
105         echo '; DEF file for MS VC++' > $@
106         echo 'LIBRARY LIBPQ' >> $@
107         echo 'DESCRIPTION "PostgreSQL Client Library"' >> $@
108         echo 'EXPORTS' >> $@
109         sed -e '/^#/d' -e 's/^\(.* \)\([0-9][0-9]*\)/    \1@ \2/' < $< >> $@
110
111 $(srcdir)/libpqddll.def: exports.txt
112         echo '; DEF file for MS VC++' > $@
113         echo 'LIBRARY LIBPQD' >> $@
114         echo 'DESCRIPTION "PostgreSQL Client Library"' >> $@
115         echo 'EXPORTS' >> $@
116         sed -e '/^#/d' -e 's/^\(.* \)\([0-9][0-9]*\)/    \1@ \2/' < $< >> $@
117
118 $(srcdir)/blibpqdll.def: exports.txt
119         echo '; DEF file for Borland C++ Builder' > $@
120         echo 'LIBRARY BLIBPQ' >> $@
121         echo 'DESCRIPTION "PostgreSQL Client Library"' >> $@
122         echo 'EXPORTS' >> $@
123         sed -e '/^#/d' -e 's/^\(.* \)\([0-9][0-9]*\)/    _\1@ \2/' < $< >> $@
124         echo '' >> $@
125         echo '; Aliases for MS compatible names' >> $@
126         sed -e '/^#/d' -e 's/^\(.* \)\([0-9][0-9]*\)/    \1= _\1/' < $< | sed 's/ *$$//' >> $@
127
128 # depend on Makefile.global to force rebuild on re-run of configure
129 $(srcdir)/libpq.rc: libpq.rc.in $(top_builddir)/src/Makefile.global
130         sed -e 's/\(VERSION.*\),0 *$$/\1,'`date '+%y%j' | sed 's/^0*//'`'/' < $< > $@
131
132 fe-connect.o: fe-connect.c $(top_builddir)/src/port/pg_config_paths.h
133
134 $(top_builddir)/src/port/pg_config_paths.h:
135         $(MAKE) -C $(top_builddir)/src/port pg_config_paths.h
136
137 install: all installdirs install-lib
138         $(INSTALL_DATA) $(srcdir)/libpq-fe.h '$(DESTDIR)$(includedir)'
139         $(INSTALL_DATA) $(srcdir)/libpq-int.h '$(DESTDIR)$(includedir_internal)'
140         $(INSTALL_DATA) $(srcdir)/pqexpbuffer.h '$(DESTDIR)$(includedir_internal)'
141         $(INSTALL_DATA) $(srcdir)/pg_service.conf.sample '$(DESTDIR)$(datadir)/pg_service.conf.sample'
142
143 installdirs:
144         $(mkinstalldirs) '$(DESTDIR)$(libdir)' '$(DESTDIR)$(includedir)' '$(DESTDIR)$(includedir_internal)'
145
146 uninstall: uninstall-lib
147         rm -f '$(DESTDIR)$(includedir)/libpq-fe.h' '$(DESTDIR)$(includedir_internal)/libpq-int.h' '$(DESTDIR)$(includedir_internal)/pqexpbuffer.h' '$(DESTDIR)$(datadir)/pg_service.conf.sample'
148
149 clean distclean: clean-lib
150         rm -f $(OBJS) pg_config_paths.h crypt.c getaddrinfo.c inet_aton.c noblock.c pgstrcasecmp.c snprintf.c strerror.c open.c thread.c md5.c ip.c encnames.c wchar.c pthread.h
151         rm -f pg_config_paths.h # Might be left over from a Win32 client-only build
152
153 maintainer-clean: distclean
154         rm -f $(srcdir)/libpqdll.def $(srcdir)/libpqddll.def $(srcdir)/blibpqdll.def $(srcdir)/libpq.rc