File tree 6 files changed +18
-22
lines changed 6 files changed +18
-22
lines changed Original file line number Diff line number Diff line change 1
1
#
2
- # $PostgreSQL: pgsql/contrib/mSQL-interface/Makefile,v 1.11 2005/12/09 21:19:34 petere Exp $
2
+ # $PostgreSQL: pgsql/contrib/mSQL-interface/Makefile,v 1.12 2006/07/15 03:33:14 tgl Exp $
3
3
#
4
4
5
- NAME = mpgsql
5
+ MODULE_big = mpgsql
6
6
SO_MAJOR_VERSION = 0
7
7
SO_MINOR_VERSION = 0
8
8
OBJS = mpgsql.o
9
+ DOCS = README.mpgsql
9
10
10
11
PG_CPPFLAGS = -I$(libpq_srcdir )
11
12
@@ -18,17 +19,3 @@ top_builddir = ../..
18
19
include $(top_builddir ) /src/Makefile.global
19
20
include $(top_srcdir ) /contrib/contrib-global.mk
20
21
endif
21
-
22
- all : all-lib
23
-
24
- install : all installdirs install-lib
25
- $(INSTALL_DATA ) $(srcdir ) /README.$(NAME ) ' $(DESTDIR)$(docdir)/contrib'
26
-
27
- installdirs :
28
- $(mkinstalldirs ) $(libdir ) ' $(DESTDIR)$(docdir)/contrib'
29
-
30
- uninstall : uninstall-lib
31
- rm -f ' $(DESTDIR)$(docdir)/contrib/README.$(NAME)'
32
-
33
- clean distclean maintainer-clean : clean-lib
34
- rm -f $(OBJS )
Original file line number Diff line number Diff line change 1
- # $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.15 2006/05/31 14:05:31 teodor Exp $
1
+ # $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.16 2006/07/15 03:33:14 tgl Exp $
2
2
3
3
MODULE_big = tsearch2
4
4
OBJS = dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o \
37
37
38
38
$(SUBDIROBJS ) : $(SUBDIRS:%=%-recursive ) ;
39
39
40
+ .PHONY : $(SUBDIRS:%=%-recursive )
41
+
40
42
$(SUBDIRS:% =%-recursive):
41
43
$(MAKE) -C $(subst -recursive,,$@) SUBSYS.o
42
44
Original file line number Diff line number Diff line change 4
4
# Makefile for port/nextstep
5
5
#
6
6
# IDENTIFICATION
7
- # $PostgreSQL: pgsql/src/backend/port/nextstep/Makefile,v 1.8 2003/11/29 19:51:54 pgsql Exp $
7
+ # $PostgreSQL: pgsql/src/backend/port/nextstep/Makefile,v 1.9 2006/07/15 03:33:14 tgl Exp $
8
8
#
9
9
# -------------------------------------------------------------------------
10
10
11
11
subdir = src/backend/port/nextstep
12
12
top_builddir = ../../../..
13
13
include $(top_builddir ) /src/Makefile.global
14
14
15
- OBJS = dynloader.o port.o
15
+ OBJS = port.o
16
16
17
17
all : SUBSYS.o
18
18
Original file line number Diff line number Diff line change 1
1
#
2
2
# Makefile for utils
3
3
#
4
- # $PostgreSQL: pgsql/src/backend/utils/Makefile,v 1.23 2004 /07/17 03:29:15 tgl Exp $
4
+ # $PostgreSQL: pgsql/src/backend/utils/Makefile,v 1.24 2006 /07/15 03:33:14 tgl Exp $
5
5
#
6
6
7
- subdir = src/backend/utils/
7
+ subdir = src/backend/utils
8
8
top_builddir = ../../..
9
9
include $(top_builddir ) /src/Makefile.global
10
10
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ subdir = src/bin/pgevent
12
12
top_builddir = ../../..
13
13
include $(top_builddir ) /src/Makefile.global
14
14
15
+ ifeq ($(PORTNAME ) , win32)
16
+
15
17
OBJS =pgevent.o pgmsgevent.o
16
18
NAME =pgevent.dll
17
19
@@ -21,7 +23,7 @@ install: all install-lib
21
23
22
24
pgevent.dll : $(OBJS ) pgevent.def
23
25
dllwrap --def pgevent.def -o $(NAME ) $(OBJS )
24
-
26
+
25
27
pgmsgevent.o : pgmsgevent.rc win32ver.rc
26
28
windres pgmsgevent.rc -o pgmsgevent.o --include-dir=$(top_builddir ) /src/include
27
29
@@ -38,3 +40,5 @@ clean distclean:
38
40
39
41
clean-lib :
40
42
rm -f $(NAME )
43
+
44
+ endif
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ subdir = src/interfaces/ecpg/include
2
2
top_builddir = ../../../..
3
3
include $(top_builddir ) /src/Makefile.global
4
4
5
+ override CPPFLAGS := -DFRONTEND -I$(top_srcdir ) /src/interfaces/ecpg/include \
6
+ -I$(libpq_srcdir ) -I$(top_builddir ) /src/port $(CPPFLAGS )
7
+
5
8
informix_esql_dir = $(pkgincludedir ) /informix/esql
6
9
7
10
install : all installdirs install-headers
You can’t perform that action at this time.
0 commit comments