mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-09 08:10:09 +08:00
Address build problems on cygwin and (hopefully) AIX.
This commit is contained in:
parent
3c63578a7e
commit
697b472099
@ -4,7 +4,7 @@
|
||||
#
|
||||
# Copyright (c) 1994, Regents of the University of California
|
||||
#
|
||||
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.82 2002/07/27 20:10:04 petere Exp $
|
||||
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.83 2002/08/08 07:47:42 ishii Exp $
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
@ -30,6 +30,7 @@ endif
|
||||
##########################################################################
|
||||
|
||||
all: submake-libpgport postgres $(POSTGRES_IMP)
|
||||
$(MAKE) -C utils/mb/conversion_procs $@
|
||||
ifeq ($(enable_nls), yes)
|
||||
$(MAKE) -C po all
|
||||
endif
|
||||
@ -130,6 +131,7 @@ ifeq ($(enable_nls), yes)
|
||||
$(MAKE) -C po $@
|
||||
endif
|
||||
$(MAKE) -C utils/mb $@
|
||||
$(MAKE) -C utils/mb/conversion_procs $@
|
||||
|
||||
install-bin: postgres $(POSTGRES_IMP) installdirs
|
||||
$(INSTALL_PROGRAM) postgres$(X) $(DESTDIR)$(bindir)/postgres$(X)
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Makefile for utils/mb
|
||||
#
|
||||
# IDENTIFICATION
|
||||
# $Header: /cvsroot/pgsql/src/backend/utils/mb/Makefile,v 1.19 2002/08/06 05:40:45 ishii Exp $
|
||||
# $Header: /cvsroot/pgsql/src/backend/utils/mb/Makefile,v 1.20 2002/08/08 07:47:43 ishii Exp $
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
@ -16,14 +16,12 @@ OBJS = encnames.o conv.o mbutils.o wchar.o wstrcmp.o wstrncmp.o
|
||||
DIRS = conversion_procs
|
||||
|
||||
all install installdirs uninstal distprep: SUBSYS.o
|
||||
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
|
||||
|
||||
clean distclean maintainer-clean:
|
||||
rm -f SUBSYS.o $(OBJS)
|
||||
@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done
|
||||
|
||||
SUBSYS.o: $(OBJS)
|
||||
@for dir in $(DIRS); do $(MAKE) -C $$dir all || exit; done
|
||||
$(LD) $(LDREL) $(LDOUT) $@ $^
|
||||
|
||||
depend dep:
|
||||
|
@ -2,7 +2,7 @@ SRCS += $(NAME).c
|
||||
OBJS += $(NAME).o
|
||||
|
||||
PG_CPPFLAGS :=
|
||||
SHLIB_LINK :=
|
||||
SHLIB_LINK := $(BE_DLLLIBS)
|
||||
|
||||
SO_MAJOR_VERSION := 0
|
||||
SO_MINOR_VERSION := 0
|
||||
|
Loading…
Reference in New Issue
Block a user