mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
remove useless files, beat some sense into Makefile. For me it builds and sort of runs, so it's a start.
34 lines
817 B
Makefile
34 lines
817 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/pl (procedural languages)
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.20 2001/05/12 01:30:30 petere Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/pl
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
DIRS := plpgsql
|
|
|
|
ifeq ($(with_tcl), yes)
|
|
DIRS += tcl
|
|
endif
|
|
|
|
ifeq ($(with_perl), yes)
|
|
DIRS += plperl
|
|
endif
|
|
|
|
# Doesn't build portably yet.
|
|
#ifeq ($(with_python), yes)
|
|
#DIRS += plpython
|
|
#endif
|
|
|
|
all install installdirs uninstall depend distprep:
|
|
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
|
|
|
|
clean distclean maintainer-clean:
|
|
@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done
|