1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Repair parallel make in backend tree (and make it really parallel).

Make Gen_fmgrtab.sh reasonably robust against concurrent invocation.
This commit is contained in:
Peter Eisentraut
2000-07-13 16:07:14 +00:00
parent 9191d684a7
commit 8a3cbc84ef
8 changed files with 110 additions and 160 deletions

View File

@@ -1,22 +1,16 @@
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for storage/ipc
# Makefile for storage/ipc
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/storage/ipc/Makefile,v 1.11 2000/05/29 05:45:06 tgl Exp $
# $Header: /cvsroot/pgsql/src/backend/storage/ipc/Makefile,v 1.12 2000/07/13 16:06:54 petere Exp $
#
#-------------------------------------------------------------------------
SRCDIR = ../../..
subdir = src/backend/storage/ipc
top_builddir = ../../../..
include ../../../Makefile.global
# seems to be required 1999/07/22 bjm
ifeq ($(CPU),alpha)
ifeq ($(CC), gcc)
CFLAGS+= -fno-inline
endif
ifeq ($(CC), egcs)
ifeq ($(CPU), alpha)
ifeq ($(GCC), yes)
CFLAGS+= -fno-inline
endif
endif
@@ -38,4 +32,3 @@ clean:
ifeq (depend,$(wildcard depend))
include depend
endif