1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-13 12:22:55 +03:00
Files
postgres/src/pl/Makefile
Peter Eisentraut 19e231bbda Improved parallel make support
Replace for loops in makefiles with proper dependencies.  Parallel
make can now span across directories.  Also, make -k and make -q work
properly.

GNU make 3.80 or newer is now required.
2010-11-12 22:15:16 +02:00

30 lines
546 B
Makefile

#-------------------------------------------------------------------------
#
# Makefile for src/pl (procedural languages)
#
# Copyright (c) 1994, Regents of the University of California
#
# src/pl/Makefile
#
#-------------------------------------------------------------------------
subdir = src/pl
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
SUBDIRS = plpgsql
ifeq ($(with_perl), yes)
SUBDIRS += plperl
endif
ifeq ($(with_python), yes)
SUBDIRS += plpython
endif
ifeq ($(with_tcl), yes)
SUBDIRS += tcl
endif
$(recurse)