mirror of
https://github.com/postgres/postgres.git
synced 2026-07-12 11:05:31 -04:00
Add some additional dependencies to constrain the build order to prevent parallel make from failing. In the case of src/Makefile, this is likely to be too complicated to be worth maintaining, so just add .NOTPARALLEL to get the old for-loop-like behavior. More fine-tuning might be necessary for some platforms or configurations.
19 lines
437 B
Makefile
19 lines
437 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/interfaces
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# src/interfaces/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/interfaces
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = libpq ecpg
|
|
|
|
$(recurse)
|
|
|
|
all-ecpg-recurse: all-libpq-recurse
|