mirror of
https://github.com/postgres/postgres.git
synced 2026-02-25 02:44:39 -05:00
to one another. Sort out builddir vs srcdir variable namings. Remove some now obsoleted make variables.
19 lines
590 B
Makefile
19 lines
590 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/pl/plpgsql (PostgreSQL's SQL procedural language)
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# $Header: /cvsroot/pgsql/src/pl/plpgsql/Makefile,v 1.5 2000/08/31 16:12:15 petere Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/pl/plpgsql
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
all install installdirs uninstall distprep:
|
|
$(MAKE) -C src $@
|
|
|
|
clean distclean maintainer-clean:
|
|
-$(MAKE) -C src $@
|