File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 4
4
#
5
5
# Copyright (c) 1994, Regents of the University of California
6
6
#
7
- # $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.82 2002/07/27 20:10:04 petere Exp $
7
+ # $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.83 2002/08/08 07:47:42 ishii Exp $
8
8
#
9
9
# -------------------------------------------------------------------------
10
10
30
30
# #########################################################################
31
31
32
32
all : submake-libpgport postgres $(POSTGRES_IMP )
33
+ $(MAKE ) -C utils/mb/conversion_procs $@
33
34
ifeq ($(enable_nls ) , yes)
34
35
$(MAKE) -C po all
35
36
endif
@@ -130,6 +131,7 @@ ifeq ($(enable_nls), yes)
130
131
$(MAKE) -C po $@
131
132
endif
132
133
$(MAKE) -C utils/mb $@
134
+ $(MAKE) -C utils/mb/conversion_procs $@
133
135
134
136
install-bin : postgres $(POSTGRES_IMP ) installdirs
135
137
$(INSTALL_PROGRAM ) postgres$(X ) $(DESTDIR )$(bindir ) /postgres$(X )
Original file line number Diff line number Diff line change 4
4
# Makefile for utils/mb
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/backend/utils/mb/Makefile,v 1.19 2002/08/06 05:40:45 ishii Exp $
7
+ # $Header: /cvsroot/pgsql/src/backend/utils/mb/Makefile,v 1.20 2002/08/08 07:47:43 ishii Exp $
8
8
#
9
9
# -------------------------------------------------------------------------
10
10
@@ -16,14 +16,12 @@ OBJS = encnames.o conv.o mbutils.o wchar.o wstrcmp.o wstrncmp.o
16
16
DIRS = conversion_procs
17
17
18
18
all install installdirs uninstal distprep : SUBSYS.o
19
- @for dir in $(DIRS ) ; do $(MAKE ) -C $$ dir $@ || exit ; done
20
19
21
20
clean distclean maintainer-clean :
22
21
rm -f SUBSYS.o $(OBJS )
23
22
@for dir in $(DIRS ) ; do $(MAKE ) -C $$ dir $@ ; done
24
23
25
24
SUBSYS.o : $(OBJS )
26
- @for dir in $(DIRS ) ; do $(MAKE ) -C $$ dir all || exit ; done
27
25
$(LD ) $(LDREL ) $(LDOUT ) $@ $^
28
26
29
27
depend dep :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ SRCS += $(NAME).c
2
2
OBJS += $(NAME ) .o
3
3
4
4
PG_CPPFLAGS :=
5
- SHLIB_LINK :=
5
+ SHLIB_LINK := $( BE_DLLLIBS )
6
6
7
7
SO_MAJOR_VERSION := 0
8
8
SO_MINOR_VERSION := 0
You can’t perform that action at this time.
0 commit comments