mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-08 11:37:39 +08:00
errors in any commands, including in various clean targets that have so far been handled inconsistently. make -i is available to ignore all errors in a consistent and official way.
17 lines
563 B
Makefile
17 lines
563 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/pl/plpgsql (PostgreSQL's SQL procedural language)
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# $PostgreSQL: pgsql/src/pl/plpgsql/Makefile,v 1.9 2008/03/18 16:24:50 petere Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/pl/plpgsql
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
all install installdirs uninstall distprep clean distclean maintainer-clean:
|
|
$(MAKE) -C src $@
|